From d71150129e1189f57d146b31b1042d43ea66083f Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 28 Oct 2013 21:32:30 +0100 Subject: Display a reminder of items concerned by the current edition (refs #1218) --- ishtar_common/templates/base.html | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'ishtar_common/templates/base.html') diff --git a/ishtar_common/templates/base.html b/ishtar_common/templates/base.html index e7fdf3e6f..e235df60a 100644 --- a/ishtar_common/templates/base.html +++ b/ishtar_common/templates/base.html @@ -78,6 +78,11 @@ {% endif %}{% endblock %} +{% if reminders %}
{% trans "Current items" %} +{% for lbl, value in reminders%} +

{{lbl}}{% trans ":"%} {{value}}

+{% endfor %} +
{%endif%}