Blame view

common/templates/navigation.html 144 Bytes
janek37 authored
1
{% for menu_item in menu %}
janek37 authored
2
3
4
5
6
    <li>
        <a href="{{ menu_item.url }}">
            {{ menu_item.name }}
        </a>
    </li>
janek37 authored
7
{% endfor %}