OpenSlides/openslides/projector/templates/projector/base_projector.html
2012-04-23 21:27:22 +02:00

25 lines
811 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% load tags %}
{% load i18n %}
{% load staticfiles %}
{% block title %}{{ block.super}} {% trans 'Projector' %} {% endblock %}
{% block submenu %}
{% url projector_control as url_projectoroverview %}
<h4 class="sectiontitle">{%trans "Projector" %}</h4>
<ul>
{% if perms.projector.can_manage_projector %}
<li class="{% if request.path == url_projectoroverview %}selected{% endif %}">
<a href="{% url projector_control %}">{% trans 'Overview' %}</a>
</li>
{% endif %}
{% if perms.projector.can_see_projector %}
<li>
<a href="{% url projector_show %}"><img src="{% static 'images/icons/projector.png' %}"> {% trans 'Projector view' %}</a>
</li>
{% endif %}
</ul>
{% endblock %}