Просмотр исходного кода

Small change in templates hierachy

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

+ 6 - 0
misago/templates/misago/403.html

@@ -0,0 +1,6 @@
+<h1>Misago Error 403</h1>
+{% if message %}
+<p>{{ message }}</p>
+{% else %}
+<p>Request not allowed.</p>
+{% endif %}

+ 2 - 0
misago/templates/misago/404.html

@@ -0,0 +1,2 @@
+<h1>Misago Error 404</h1>
+<p>Page not found.</p>

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


+ 1 - 0
misago/templates/misago/index.html

@@ -0,0 +1 @@
+Hello world, I'm placeholder index template!