#420: Use clean layout for group slide: Remove printing group users; print group name and number of members only. (Later we need a solution to print users fullname not username.)

This commit is contained in:
Emanuel Schuetze 2012-11-22 22:07:33 +01:00
parent c115ea59a0
commit bba301a4b3
1 changed files with 9 additions and 11 deletions

View File

@ -8,17 +8,15 @@
{% block content %} {% block content %}
<div class="item_fullscreen">{{ group }} <div class="item_fullscreen">{{ group }}
<span> <span>
<p><i>{{ group.user_set.all.count }} {% trans "participants" %}:</i></p> <p><i>{{ group.user_set.all.count }} {% trans "participants" %}</i></p>
<p> {% comment %}
{% if group.user_set.all %} TODO: print fullname (not username) of all group users [see #420]
{{ group.user_set.all|join:", " }} <p>
{% endif %} {% if group.user_set.all %}
</p> {{ group.user_set.all|join:", " }}
{% endif %}
</p>
{% endcomment %}
</span> </span>
</div> </div>
{% endblock %}
{% block scrollcontent %}
{% endblock %} {% endblock %}