18 lines
781 B
HTML
18 lines
781 B
HTML
{% extends "base.html" %}
|
|
{% load tags %}
|
|
|
|
{% block submenu %}
|
|
{% url item_overview as url_itemoverview %}
|
|
{% url item_new as url_itemnew %}
|
|
<h4 class="sectiontitle">{%trans "Agenda" %}</h4>
|
|
<ul>
|
|
<li class="{% if request.path == url_itemoverview %}selected{% endif %}"><a href="{% url item_overview %}">{%trans "All items" %}</a></li>
|
|
{% if perms.agenda.can_manage_agenda %}
|
|
<li class="{% active request '/agenda/new/' %}"><a href="{% url item_new 'ItemText' %}">{%trans "New item" %}</a></li>
|
|
{% endif %}
|
|
{% if perms.agenda.can_see_projector %}
|
|
<li><a href="{% url item_beamer %}"><img src="/static/images/icons/video-projector.png"> {%trans 'Projector view' %}</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
{% endblock %}
|