Django 1.7, add Makefile
[prawokultury.git] / menu / templates / menu / menu.html
1 {% load i18n %}
2 {% for item in items %}
3   {% if item.obj %}
4     <li{% if item.active %} 
5         class="active"{%endif %} {% if item.html_id %}
6         id="{{ item.html_id}}"{% endif %}>
7         <a href="{{ item.get_url }}">{{ item.get_title }}</a></li>
8   {% endif %}
9 {% endfor %}