Show supporters on motion slide if available.

This commit is contained in:
Emanuel Schuetze 2014-06-19 12:12:48 +02:00 committed by Norman Jäckel
parent 587a3766d2
commit f6d0a96126
2 changed files with 14 additions and 0 deletions

View File

@ -8,6 +8,9 @@ Version 1.6.1 (unreleased)
==========================
[https://github.com/OpenSlides/OpenSlides/issues?milestone=16]
Motions:
- Show supporters on motion slide if available.
Participants:
- Fixed participant csv import for group id:
* Allowed to add multiple groups in csv group id field, e.g. "3,4".

View File

@ -55,6 +55,17 @@
-
{% endfor %}
<!-- Supporters -->
{% with motion.supporter.all as supporters %}
{% if supporters|length > 0 %}
<h4>{% trans "Supporters" %}:</h4>
{% for supporter in supporters %}
{{ supporter.person }}{% if not forloop.last %},<br> {% endif %}
{% endfor %}
</p>
{% endif %}
{% endwith %}
<!-- Category -->
{% if motion.category %}
<h4>{% trans "Category" %}:</h4>