From bba301a4b35944604478589dc88f94000fe9ea91 Mon Sep 17 00:00:00 2001 From: Emanuel Schuetze Date: Thu, 22 Nov 2012 22:07:33 +0100 Subject: [PATCH] #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.) --- .../templates/projector/GroupSlide.html | 20 +++++++++---------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/openslides/participant/templates/projector/GroupSlide.html b/openslides/participant/templates/projector/GroupSlide.html index 90f738743..3de117e95 100644 --- a/openslides/participant/templates/projector/GroupSlide.html +++ b/openslides/participant/templates/projector/GroupSlide.html @@ -8,17 +8,15 @@ {% block content %}
{{ group }} -

{{ group.user_set.all.count }} {% trans "participants" %}:

-

- {% if group.user_set.all %} - {{ group.user_set.all|join:", " }} - {% endif %} -

+

{{ group.user_set.all.count }} {% trans "participants" %}

+ {% comment %} + TODO: print fullname (not username) of all group users [see #420] +

+ {% if group.user_set.all %} + {{ group.user_set.all|join:", " }} + {% endif %} +

+ {% endcomment %}
- -{% endblock %} - -{% block scrollcontent %} - {% endblock %}