diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-11-16 19:07:13 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-11-28 11:40:17 +0100 |
commit | 6d1beb3e0bda4786d5577a8c1498042b96421fa0 (patch) | |
tree | f6192505b4a80cdc63a00ca6938fd2300a9a3071 /ishtar_common/templates/blocks/action_list.html | |
parent | cce8c95c54c6d29d94a9e82acc9d54dcb4c20500 (diff) | |
download | Ishtar-6d1beb3e0bda4786d5577a8c1498042b96421fa0.tar.bz2 Ishtar-6d1beb3e0bda4786d5577a8c1498042b96421fa0.zip |
Treatment n->1: base forms
Diffstat (limited to 'ishtar_common/templates/blocks/action_list.html')
-rw-r--r-- | ishtar_common/templates/blocks/action_list.html | 4 |
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> |