main_menu.html
963 Bytes
{% load url from future %}
<ul id="main_menu">
{% if not user.is_authenticated %}
<li><a href="{% url 'reader_view' %}">Leksemy</a></li>
{% endif %}
{% if perms.dictionary.view_lexeme %}
<li><a href="{% url 'lexeme_view' %}">Leksemy</a></li>
{% endif %}
{% if perms.dictionary.view_pattern %}
<li><a href="{% url 'pattern_view' %}">Wzory</a></li>
{% endif %}
{% if user.is_authenticated %}
<li><a href="{% url 'tasks' %}">Zadania</a></li>
<li><a href="{% url 'reports' %}">Raporty</a></li>
<li><a href="{% url 'history_view' %}">Historia</a></li>
{% endif %}
{% comment %}
{% if perms.dictionary.export_lexemes %}
<li><a href="{% url 'export' %}">Eksport</a></li>
{% endif %}
{% endcomment %}
{% if perms.dictionary.manage_vocabulary or perms.auth.add_user %}
<li><a href="{% url 'management_menu' %}">Administracja</a></li>
{% endif %}
</ul>