From 7d2aa560ba859ebb593d34b062bf1faf09c8724c Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 18 Oct 2012 17:49:57 +0200 Subject: Djangoization - Major refactoring (step 1) --- ishtar_common/templates/base.html | 89 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 ishtar_common/templates/base.html (limited to 'ishtar_common/templates/base.html') diff --git a/ishtar_common/templates/base.html b/ishtar_common/templates/base.html new file mode 100644 index 000000000..630fe666e --- /dev/null +++ b/ishtar_common/templates/base.html @@ -0,0 +1,89 @@ +{% load i18n %} + + + + + + {% block title %}Ishtar{% if APP_NAME %} - {{APP_NAME}}{%endif%}{% endblock %} + + + + + + + + + {% block extra_head %} + {% endblock %} + + + +
+ +
+ {% block context %}{% if current_menu %} +
+
+ {% trans "Default items"%} + + {% for lbl, model_name, items in current_menu %} + + + + + {% endfor %} +
+ +
+
+
+ {% endif %}{% endblock %} +
+ +
+ {% block content %}{% endblock %} +
+ + + + + -- cgit v1.2.3