ebe8f90d1e
Fixed agenda item widget, assignment widget, motion widget, participant user widget and participant group widget. Fixed #1279.
29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
{% extends 'core/widget.html' %}
|
|
|
|
{% load i18n %}
|
|
{% load tags %}
|
|
|
|
{% block content %}
|
|
<ul style="line-height: 180%">
|
|
{% for group in groups %}
|
|
<li class="{% if group.is_active_slide %}activeline{% endif %}">
|
|
<a href="{{ group|absolute_url:'projector' }}" class="activate_link btn {% if group.is_active_slide %}btn-primary{% endif %} btn-mini"
|
|
rel="tooltip" data-original-title="{% trans 'Show' %}">
|
|
<i class="icon-facetime-video {% if group.is_active_slide %}icon-white{% endif %}"></i>
|
|
</a>
|
|
{% if perms.participant.can_manage_participant %}
|
|
<a href="{{ group|absolute_url:'update' }}"
|
|
rel="tooltip" data-original-title="{% trans 'Edit' %}" class="btn btn-mini right">
|
|
<i class="icon-pencil"></i>
|
|
</a>
|
|
{% endif %}
|
|
<a href="{{ group|absolute_url:'projector_preview' }}"
|
|
rel="tooltip" data-original-title="{% trans 'Preview' %}" class="btn btn-mini right">
|
|
<i class="icon-search"></i>
|
|
</a>
|
|
<a href="{{ group|absolute_url }}">{% trans group.name %}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|