forked from CGM_Public/pretix_original
Allow topbar navigation subitems not to have an URL
This commit is contained in:
@@ -161,13 +161,13 @@
|
|||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
{% for item in nav.children %}
|
{% for item in nav.children %}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ item.url }}"
|
<a {% if item.url %}href="{{ item.url }}"{% endif %}
|
||||||
|
{% if item.external %}target="_blank"{% endif %}
|
||||||
{% if item.active %}class="active"{% endif %}>
|
{% if item.active %}class="active"{% endif %}>
|
||||||
{% if item.icon %}
|
{% if item.icon %}
|
||||||
<span class="fa fa-{{ item.icon }}"></span>
|
<span class="fa fa-fw fa-{{ item.icon }}"></span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{ item.label|safe }}
|
{{ item.label|safe }}</a>
|
||||||
</a>
|
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
Reference in New Issue
Block a user