Fixed motion detail view template. Added block to enable extra content via plugins. Updated CHANGELOG.
This commit is contained in:
parent
cc7961c1f9
commit
af8dead5a3
12
CHANGELOG
12
CHANGELOG
@ -10,15 +10,21 @@ Version 1.6.1 (unreleased)
|
|||||||
|
|
||||||
Motions:
|
Motions:
|
||||||
- Show supporters on motion slide if available.
|
- Show supporters on motion slide if available.
|
||||||
|
- Fixed motion detail view template. Added block to enable extra content via
|
||||||
|
plugins.
|
||||||
|
|
||||||
|
Assignments:
|
||||||
|
- Fixed PDF when an assignment has a lot of posts. Used only 7 signature
|
||||||
|
lines.
|
||||||
|
|
||||||
Participants:
|
Participants:
|
||||||
- Fixed participant csv import for group id:
|
- Fixed participant csv import with group ids:
|
||||||
* 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".
|
||||||
* Fixed bug that group ids > 9 can not be imported.
|
* Fixed bug that group ids greater than 9 can not be imported.
|
||||||
* Updated error message if group id does not exists.
|
* Updated error message if group id does not exists.
|
||||||
|
|
||||||
Other:
|
Other:
|
||||||
- Fixed CKEditor stuff (added insertpre plugin and removed unused code)
|
- Fixed CKEditor stuff (added insertpre plugin and removed unused code).
|
||||||
|
|
||||||
|
|
||||||
Version 1.6 (2014-06-02)
|
Version 1.6 (2014-06-02)
|
||||||
|
@ -208,9 +208,12 @@
|
|||||||
<h5>{% trans "Vote result" %}:</h5>
|
<h5>{% trans "Vote result" %}:</h5>
|
||||||
{% with motion.polls.all as polls %}
|
{% with motion.polls.all as polls %}
|
||||||
{% for poll in polls %}
|
{% for poll in polls %}
|
||||||
{% if perms.motion.can_manage_motion or poll.has_votes %}
|
<p>
|
||||||
<p>{{ poll.poll_number|ordinal|safe }} {% trans "vote" %}:<br>
|
{% if polls.count > 1 %}
|
||||||
|
{{ poll.poll_number|ordinal|safe }} {% trans "vote" %}:
|
||||||
|
{% endif %}
|
||||||
{% if perms.motion.can_manage_motion %}
|
{% if perms.motion.can_manage_motion %}
|
||||||
|
{% if polls.count > 1 %}<br>{% endif %}
|
||||||
<a class="btn btn-mini activate_link {% if poll.is_active_slide %}btn-primary{% endif %}" href="{{ poll|absolute_url:'projector' }}"
|
<a class="btn btn-mini activate_link {% if poll.is_active_slide %}btn-primary{% endif %}" href="{{ poll|absolute_url:'projector' }}"
|
||||||
rel="tooltip" data-original-title="{% trans 'Show vote result' %}">
|
rel="tooltip" data-original-title="{% trans 'Show vote result' %}">
|
||||||
<i class="icon-facetime-video {% if poll.is_active_slide %}icon-white{% endif %}"></i></a>
|
<i class="icon-facetime-video {% if poll.is_active_slide %}icon-white{% endif %}"></i></a>
|
||||||
@ -220,7 +223,6 @@
|
|||||||
rel="tooltip" data-original-title="{% trans 'Edit Vote' %}"><i class="icon-pencil"></i></a>
|
rel="tooltip" data-original-title="{% trans 'Edit Vote' %}"><i class="icon-pencil"></i></a>
|
||||||
<a class="btn btn-mini" href="{{ poll|absolute_url:'delete' }}"
|
<a class="btn btn-mini" href="{{ poll|absolute_url:'delete' }}"
|
||||||
rel="tooltip" data-original-title="{% trans 'Delete Vote' %}"><i class="icon-remove"></i></a>
|
rel="tooltip" data-original-title="{% trans 'Delete Vote' %}"><i class="icon-remove"></i></a>
|
||||||
</p>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if poll.has_votes %}
|
{% if poll.has_votes %}
|
||||||
<div class="result">
|
<div class="result">
|
||||||
@ -244,11 +246,10 @@
|
|||||||
{% endwith %}
|
{% endwith %}
|
||||||
</div>
|
</div>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% if perms.motion.can_manage_motion %}
|
|
||||||
<p><span class="label label-info">{% trans 'No result' %}</span></p>
|
<p><span class="label label-info">{% trans 'No result' %}</span></p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% block meta_box_poll_extras %}{% endblock %}
|
||||||
{% endif %}
|
</p>
|
||||||
{% empty %}
|
{% empty %}
|
||||||
–
|
–
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
@ -279,15 +280,6 @@
|
|||||||
</h5>
|
</h5>
|
||||||
{{ version.creation_time }}
|
{{ version.creation_time }}
|
||||||
|
|
||||||
<!-- Widthdraw button -->
|
|
||||||
{# TODO: Check this button #}
|
|
||||||
{% if allowed_actions.wit and user in motion.submitters %}
|
|
||||||
<br><br>
|
|
||||||
<a href="{% url 'motion_set_state' motion.id 'wit' %}" class="btn">
|
|
||||||
<span class="icon revert">{% trans 'Withdraw motion' %}</span>
|
|
||||||
</a>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
<!-- Support/Unsupport button -->
|
<!-- Support/Unsupport button -->
|
||||||
{% if perms.motion.can_support_motion and 'motion_min_supporters'|get_config > 0 %}
|
{% if perms.motion.can_support_motion and 'motion_min_supporters'|get_config > 0 %}
|
||||||
{% if allowed_actions.unsupport %}
|
{% if allowed_actions.unsupport %}
|
||||||
|
@ -62,7 +62,6 @@
|
|||||||
{% for supporter in supporters %}
|
{% for supporter in supporters %}
|
||||||
{{ supporter.person }}{% if not forloop.last %},<br>{% endif %}
|
{{ supporter.person }}{% if not forloop.last %},<br>{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</p>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endwith %}
|
{% endwith %}
|
||||||
|
|
||||||
@ -82,9 +81,14 @@
|
|||||||
</small>
|
</small>
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
<div class="text">{{ motion.active_version.text|safe }}</div>
|
<div class="text">
|
||||||
|
{{ motion.active_version.text|safe }}
|
||||||
|
</div>
|
||||||
|
|
||||||
{% if motion.active_version.reason %}
|
{% if motion.active_version.reason %}
|
||||||
<br>
|
<br>
|
||||||
<div class="reason"><p><b>{% trans "Reason" %}:</b></p>
|
<div class="reason">
|
||||||
{{ motion.active_version.reason|safe }}</div>
|
<p><b>{% trans "Reason" %}:</b></p>
|
||||||
|
{{ motion.active_version.reason|safe }}
|
||||||
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
Reference in New Issue
Block a user