Rafał Pitoń 11 лет назад
Родитель
Сommit
a54055ecc5

+ 4 - 0
misago/templates/misago/admin/base.html

@@ -3,7 +3,9 @@
 
 
 {% block body %}
+{% include "misago/admin/messages.html" %}
 {% include "misago/admin/navbar.html" %}
+
 <h1>Nodes:</h1>
 {% for level in navigation %}
 <hr>
@@ -25,5 +27,7 @@
 
 {% include "misago/admin/logout.html" %}
 
+{# We include JavaScript at the end of page body so it loads faster #}
+{% compressed_js 'misago' %}
 {% block extra_scripts %}{% endblock %}
 {% endblock %}

+ 0 - 4
misago/templates/misago/admin/base_thin.html

@@ -20,11 +20,7 @@
   </head>
   <body>
 
-    {% include "misago/admin/messages.html" %}
-
     {% block body %}{% endblock %}
 
-    {# We include JavaScript at the end of page body so it renders faster #}
-    {% compressed_js 'misago' %}
   </body>
 </html>