Add projector view link on front page. Fixed column for can_manage_projector permission.

This commit is contained in:
Emanuel Schuetze 2012-05-20 20:51:11 +02:00
parent 4389f5f548
commit 92a64d38cf
2 changed files with 18 additions and 0 deletions

View File

@ -63,7 +63,11 @@
<th>{% trans "Item" %}</th>
{% if perms.agenda.can_manage_agenda %}
<th style="width: 1px;">{% trans "Comment" %}</th>
{% endif %}
{% if perms.agenda.can_manage_agenda or perms.projector.can_manage_projector %}
<th style="width: 1px;">{% trans "Actions" %}</th>
{% endif %}
{% if perms.agenda.can_manage_agenda %}
<th class="tabledrag-hide">{% trans "Weight" %}</th>
{% endif %}
</tr>
@ -75,6 +79,8 @@
</td>
{% if perms.agenda.can_manage_agenda %}
<td></td>
{% endif %}
{% if perms.agenda.can_manage_agenda or perms.projector.can_manage_projector %}
<td></td>
{% endif %}
</tr>

View File

@ -1,6 +1,7 @@
{% extends "base.html" %}
{% load i18n %}
{% load staticfiles %}
{% block title %}{{ block.super }} {% trans "Home" %}{% endblock %}
@ -15,3 +16,14 @@
{% endfor %}
</ul>
{% endblock %}
{% block submenu %}
{% if perms.projector.can_see_projector %}
<h4 class="sectiontitle">{%trans "Home" %}</h4>
<ul>
<li>
<a href="{% url projector_show %}"><img src="{% static 'images/icons/projector.png' %}"> {% trans 'Projector view' %}</a>
</li>
</ul>
{% endif %}
{% endblock %}