| OLD | NEW |
| 1 {% extends "layout.html" %} | 1 {% extends "layout.html" %} |
| 2 | 2 |
| 3 {% block head %} | 3 {% block head %} |
| 4 {{ super() }} | 4 {{ super() }} |
| 5 <script type='text/javascript'> | 5 <script type='text/javascript'> |
| 6 // <![CDATA[ | 6 // <![CDATA[ |
| 7 // | 7 // |
| 8 | 8 |
| 9 // | 9 // |
| 10 // Functions used to display the build status bubble on box click. | 10 // Functions used to display the build status bubble on box click. |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 {% for r in revisions %} | 180 {% for r in revisions %} |
| 181 {% set alt = alt_class.next() %} | 181 {% set alt = alt_class.next() %} |
| 182 {% set last = "last" if loop.last else "" %} | 182 {% set last = "last" if loop.last else "" %} |
| 183 | 183 |
| 184 <tr> | 184 <tr> |
| 185 <td class='DevRev {{ alt }}' width="1%"> | 185 <td class='DevRev {{ alt }}' width="1%"> |
| 186 {{ r.id|shortrev(r.repository) }} | 186 {{ r.id|shortrev(r.repository) }} |
| 187 </td> | 187 </td> |
| 188 <td class='DevName {{ alt }}' width="1%"> | 188 <td class='DevName {{ alt }}' width="1%"> |
| 189 {{ r.who|user }} | 189 {{ r.who|user }} |
| 190 {{ r.cq }} |
| 190 </td> | 191 </td> |
| 191 | 192 |
| 192 {% for c in categories %} | 193 {% for c in categories %} |
| 193 <td class='DevStatus {{ alt }} {{ last }}'> | 194 <td class='DevStatus {{ alt }} {{ last }}'> |
| 194 <table width="100%"> | 195 <table width="100%"> |
| 195 <tr> | 196 <tr> |
| 196 {% for b in r.builds[c.name] %} | 197 {% for b in r.builds[c.name] %} |
| 197 <td class='DevStatusBox'> | 198 <td class='DevStatusBox'> |
| 198 <a href='#' onclick='showBuildBox("{{ b.url }}", event); return fals
e;' | 199 <a href='#' onclick='showBuildBox("{{ b.url }}", event); return fals
e;' |
| 199 title='{{ b.pageTitle|e }}' class='DevStatusBox {{ b.color }} {{
b.tag }}' | 200 title='{{ b.pageTitle|e }}' class='DevStatusBox {{ b.color }} {{
b.tag }}' |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 </script> | 258 </script> |
| 258 | 259 |
| 259 {% endblock %} | 260 {% endblock %} |
| 260 | 261 |
| 261 | 262 |
| 262 {% block footer %} | 263 {% block footer %} |
| 263 | 264 |
| 264 {{ super() }} | 265 {{ super() }} |
| 265 {# <p>Debug info: {{ debuginfo }}</p> #} | 266 {# <p>Debug info: {{ debuginfo }}</p> #} |
| 266 {% endblock %} | 267 {% endblock %} |
| OLD | NEW |