{% include "dev_sup/logo.html" %}
{% if not nav_elems %}

No elements to display

{% else %}
    {% for element in nav_elems %} {% comment %} {% include "dev_sup/navbar_element_template.html" %} {% endcomment %} {% if element.link.url != "" %}
  • {{element.displayed_name}}
  • {% endif %} {% if element.dropdownmenu != "" %}
  • {{element.displayed_name}}
      {% for item in element.dropdownmenu.ordered_item_list.all %} {% with element=item %} {% comment %}
    • {{item.name}}
    • {% endcomment %} {% include "dev_sup/navbar_element_template.html"%} {% endwith %} {% endfor %}
  • {% endif %} {% endfor %}
{% endif %}