summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/base.html
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2018-01-30 17:14:07 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2018-01-30 17:14:07 +0100
commit52883f6f5d58dbe4adc9f47e0fdc969c62efb392 (patch)
treed3cfb514a3f1a171164d79f615a3ea107bffe5c3 /ishtar_common/templates/base.html
parent4e0a147923ed6027e269bcb3eabf6361902050bb (diff)
downloadIshtar-52883f6f5d58dbe4adc9f47e0fdc969c62efb392.tar.bz2
Ishtar-52883f6f5d58dbe4adc9f47e0fdc969c62efb392.zip
UI: adapt shortcut menu
Diffstat (limited to 'ishtar_common/templates/base.html')
-rw-r--r--ishtar_common/templates/base.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/ishtar_common/templates/base.html b/ishtar_common/templates/base.html
index c9dfde974..b2f0b055c 100644
--- a/ishtar_common/templates/base.html
+++ b/ishtar_common/templates/base.html
@@ -56,9 +56,9 @@
</head>
<body{% if current_theme%} id='{{current_theme}}'{%endif%}>
{% include "navbar.html" %}
- {% if not reminders %}<div id="context-menu" class="navbar navbar-expand-lg"></div>
- {% else %}
-<div id="reminder"><h5>{% trans "Current items" %}</h5>
+ <div id="context-menu" class="navbar navbar-expand-lg"></div>
+ {% if reminders %}
+ <div id="reminder"><h5>{% trans "Current items" %}</h5>
{% for lbl, value in reminders %}
<p><strong class='lbl'>{{lbl}}{% trans ":"%}</strong> <span class='value'>{{value}}</span></p>
{% endfor %}