Show supporters on motion slide if available.
This commit is contained in:
parent
587a3766d2
commit
f6d0a96126
@ -8,6 +8,9 @@ Version 1.6.1 (unreleased)
|
|||||||
==========================
|
==========================
|
||||||
[https://github.com/OpenSlides/OpenSlides/issues?milestone=16]
|
[https://github.com/OpenSlides/OpenSlides/issues?milestone=16]
|
||||||
|
|
||||||
|
Motions:
|
||||||
|
- Show supporters on motion slide if available.
|
||||||
|
|
||||||
Participants:
|
Participants:
|
||||||
- Fixed participant csv import for group id:
|
- Fixed participant csv import for group id:
|
||||||
* Allowed to add multiple groups in csv group id field, e.g. "3,4".
|
* Allowed to add multiple groups in csv group id field, e.g. "3,4".
|
||||||
|
@ -55,6 +55,17 @@
|
|||||||
-
|
-
|
||||||
{% endfor %}
|
{% 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 -->
|
<!-- Category -->
|
||||||
{% if motion.category %}
|
{% if motion.category %}
|
||||||
<h4>{% trans "Category" %}:</h4>
|
<h4>{% trans "Category" %}:</h4>
|
||||||
|
Loading…
Reference in New Issue
Block a user