i18n
This commit is contained in:
parent
1fc9e1f75d
commit
c74b6565f9
5 changed files with 264 additions and 2 deletions
16
account/templates/group_list.html
Normal file
16
account/templates/group_list.html
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block container %}
|
||||
BLA
|
||||
<div class="row">
|
||||
<div class="span12">
|
||||
<h2>members of {{ group.name }}</h2>
|
||||
<div class="alert alert-info">
|
||||
diese liste enthä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>
|
||||
{% endblock container %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue