a878b43380
Add a openstack_status magic parameter in config.js which toggles the use of openstack-specific CSS and JS files to better integrate in status.openstack.org.
37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
<HTML>
|
|
<TITLE>Bugsquashing day stats</TITLE>
|
|
{% if openstack_status %}
|
|
<link rel="stylesheet"
|
|
href="http://www.openstack.org/themes/openstack/css/blueprint/screen.css"
|
|
type="text/css" media="screen, projection"/>
|
|
<link rel="stylesheet"
|
|
href="http://www.openstack.org/themes/openstack/css/blueprint/print.css"
|
|
type="text/css" media="print"/>
|
|
<link href='http://fonts.googleapis.com/css?family=PT+Sans&subset=latin'
|
|
rel='stylesheet' type='text/css'/>
|
|
<link rel="stylesheet" type="text/css"
|
|
href="http://www.openstack.org/themes/openstack/css/main.css" />
|
|
<script type="text/javascript"
|
|
src="http://status.openstack.org/common.js"></script>
|
|
<script type="text/javascript">header('Bugday');</script>
|
|
{% endif %}
|
|
<h1>Bugsquashing day stats</h1>
|
|
<TABLE BORDER=0>
|
|
{% for project in projects %}
|
|
<TR><TD>
|
|
{% if project.title %}
|
|
<h2>{{ project.title }}</h2>
|
|
{% else %}
|
|
<h2>{{ project.project|capitalize }}</h2>
|
|
{% endif %}
|
|
</TD>
|
|
<TD><IFRAME SRC="{{ project.project }}.html" WIDTH="750"
|
|
HEIGHT="{{ project.height|default(230) }}" FRAMEBORDER=NO>
|
|
</IFRAME></TD></TR>
|
|
{% endfor %}
|
|
</TABLE>
|
|
{% if openstack_status %}
|
|
<script type="text/javascript">footer();</script>
|
|
{% endif %}
|
|
</HTML>
|