OpenSlides/openslides/participant/templates/participant/group_overview.html
2012-07-16 14:00:29 +02:00

31 lines
1.0 KiB
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 "participant/base_participant.html" %}
{% load i18n %}
{% load staticfiles %}
{% block title %}{{ block.super }} {% trans "User groups" %}{% endblock %}
{% block content %}
<h1>{% trans "User groups" %}</h1>
<table>
<tr>
<th>{% trans "User Group" %}</th>
<th>{% trans "Actions" %}</th>
</tr>
{% for group in groups %}
<tr class="{% cycle '' 'odd' %}">
<td>{{ group.name }}</td>
<td><a href="{% url user_group_edit group.id %}"><img src="{% static 'images/icons/edit.png' %}" title="{% trans 'Edit group' %}"></a>
{% if group.name != 'Anonymous' %}
<a href="{% url user_group_delete group.id %}"><img src="{% static 'images/icons/delete.png' %}" title="{% trans 'Delete group' %}"></a>
{% endif %}
</td>
</tr>
{% empty %}
<tr>
<td colspan="5"><i>{% trans "No user groups available." %}</i></td>
</tr>
{% endfor %}
</table>
{% endblock %}