summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/blocks/action_list.html
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2019-01-11 16:19:59 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2019-01-11 16:19:59 +0100
commit1e05946531d237dc954f46ddfc25a6b61c084a74 (patch)
tree8b9137dd9b68121db86e4e22dfdb7b7016a6f1ad /ishtar_common/templates/blocks/action_list.html
parent4779acd3006e6d6b17babd13585a4d83fb8d2332 (diff)
parent9eced41d76545bd2921605b7b81bd14b875ce541 (diff)
downloadIshtar-1e05946531d237dc954f46ddfc25a6b61c084a74.tar.bz2
Ishtar-1e05946531d237dc954f46ddfc25a6b61c084a74.zip
Merge branch 'develop'
Diffstat (limited to 'ishtar_common/templates/blocks/action_list.html')
-rw-r--r--ishtar_common/templates/blocks/action_list.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/ishtar_common/templates/blocks/action_list.html b/ishtar_common/templates/blocks/action_list.html
index 50a6554c4..384082ad4 100644
--- a/ishtar_common/templates/blocks/action_list.html
+++ b/ishtar_common/templates/blocks/action_list.html
@@ -1,12 +1,12 @@
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle"
data-toggle="dropdown" href="#" role="button" aria-haspopup="true"
- aria-expanded="false">{{section_label}}</a>
+ aria-expanded="false">{{section_label|safe}}</a>
<div class="dropdown-menu">
{% for label, url, has_children in sections %}
<a class="dropdown-item{% if has_children%} font-weight-bold{%endif%}" href="{{url}}">
- {{ label }}
+ {{ label|safe }}
</a>{% endfor %}
</div>
</li>