From 4ffb67938358cbfedec0ac1fc75ba438c0af060f Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 16 Jan 2014 22:20:15 +0100 Subject: Display of record carts from the shortcut menu (refs #1602) - change record cart links to a more explicit image --- ishtar_common/templates/base.html | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'ishtar_common/templates/base.html') diff --git a/ishtar_common/templates/base.html b/ishtar_common/templates/base.html index e235df60a..baab57409 100644 --- a/ishtar_common/templates/base.html +++ b/ishtar_common/templates/base.html @@ -1,4 +1,5 @@ {% load i18n %} +{% load url from future%} @@ -26,10 +27,10 @@ {% block header %} {% if user.is_authenticated %} {% trans "Logged in" %}: {{ user.username }} - ({% trans "Log out" %} | - {% trans "Change password" %}) + ({% trans "Log out" %} | + {% trans "Change password" %}) {% else %} - {% trans "Log in" %} + {% trans "Log in" %} {% endif %} {% if LANGUAGES|length > 1 %}
@@ -58,7 +59,7 @@
{% block context %}{% if current_menu %} -
+
{% trans "Default selected items"%} @@ -70,7 +71,9 @@ {% for val, label, selected in items %} {% endfor %} - + {% with 'show-'|add:model_name as model_url%} + + {% endwith %} {% endfor %}
{% trans "Details" %}
@@ -92,10 +95,10 @@ {% if menu_item.childs %}
  • {{menu_item.label}}
  • {%else%} - {{menu_item.label}} + {{menu_item.label}} {%endif%}{% endif %}{% endfor %} {%endif%} -- cgit v1.2.3