cbmi/account/templates/group_list.html

16 lines
546 B
HTML
Raw Normal View History

2013-10-19 00:47:24 +02:00
{% extends "base.html" %}
2013-10-24 01:49:46 +02:00
{% block container %}
2013-10-19 00:47:24 +02:00
<div class="row">
<div class="span12">
<h2>members of {{ group.name }}</h2>
<div class="alert alert-info">
diese liste enth&auml;lt nur gruppenmitglieder, die sich mindestens einmal angemeldet haben.
</div>
{% for u in group.user_set.all %}
<label class="label label-info">{{ u }}</label>
{% endfor %}
</div>
</div>
2013-10-24 01:49:46 +02:00
{% endblock container %}