| OLD | NEW |
| 1 {% extends "base.html" %} | 1 {% extends "base.html" %} |
| 2 | 2 |
| 3 {% block extra_head %} | 3 {% block extra_head %} |
| 4 <script src="js/main/main.js"></script> | 4 <script src="js/main/main.js"></script> |
| 5 <script data-dojo-config="async:true" | 5 <script data-dojo-config="async:true" |
| 6 src="//ajax.googleapis.com/ajax/libs/dojo/1.9.1/dojo/dojo.js"></script
> | 6 src="//ajax.googleapis.com/ajax/libs/dojo/1.9.1/dojo/dojo.js"></script
> |
| 7 {% endblock %} | 7 {% endblock %} |
| 8 | 8 |
| 9 {% block content %} | 9 {% block content %} |
| 10 <!-- Keep in sync with status.py:Status.general_state() logic --> | 10 <!-- Keep in sync with status.py:Status.general_state() logic --> |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 {{ a_link.text }} | 67 {{ a_link.text }} |
| 68 {% endif %} | 68 {% endif %} |
| 69 {% endfor %} | 69 {% endfor %} |
| 70 </td> | 70 </td> |
| 71 </tr> | 71 </tr> |
| 72 {% endfor %} | 72 {% endfor %} |
| 73 | 73 |
| 74 </table> | 74 </table> |
| 75 </center> | 75 </center> |
| 76 {% endblock %} | 76 {% endblock %} |
| OLD | NEW |