b082f8a8fc
- Translate group name in participant overview table. - Move 'status_link' function from participants.js to utils.js for using in VoteCollector plugin. - Added hook 'post_js' for VoteCollector plugin. - Fixed poll id in poll_form. - Improved 'show log' button - Used welcome_title for default custom slide - Used bootstraps' fluid grid nesting for responsive layout of widgets. - Added microphone icon for 'add-me-to-list-of-speakers' button. - Format motion identifier and title in (motion and account) widgets. - Format list of speakers (slide, overlay, view, overview) - Format list of speakers widget and view. Added view to link to current list of speakers (without add to list). - Fixed motion slide. Made up/down animation faster and the scroll way shorter. - Fixed icon name. - Set default context of 'extra_javascript' to use kwargs['context']['extra_javascript'].append('...') without error. - Fixed translation of motion state. Moved css code.
62 lines
1.6 KiB
HTML
62 lines
1.6 KiB
HTML
{% load i18n %}
|
|
{% load tags %}
|
|
|
|
<ul style="line-height: 180%">
|
|
{% trans 'I am on the list of speakers of the following items:' %}
|
|
{% for item in items %}
|
|
<li><a href="{% model_url item %}">{{ item }}</a></li>
|
|
{% empty %}
|
|
<li><i>{% trans 'None' %}</i></li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<hr />
|
|
<ul style="line-height: 180%">
|
|
{% trans 'I submitted the following motions:' %}
|
|
{% for motion in submitted_motions %}
|
|
<li>
|
|
<a href="{% model_url motion %}">
|
|
{% if motion.identifier %}
|
|
[#{{ motion.identifier }}]
|
|
{% else %}
|
|
[---]
|
|
{% endif %}
|
|
{{ motion }}
|
|
</a>
|
|
</li>
|
|
{% empty %}
|
|
<li><i>{% trans 'None' %}</i></li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% if config_motion_min_supporters %}
|
|
<hr />
|
|
<ul style="line-height: 180%">
|
|
{% trans 'I support the following motions:' %}
|
|
{% for motion in supported_motions %}
|
|
<li>
|
|
<a href="{% model_url motion %}">
|
|
{% if motion.identifier %}
|
|
[#{{ motion.identifier }}]
|
|
{% else %}
|
|
[---]
|
|
{% endif %}
|
|
{{ motion }}
|
|
</a>
|
|
</li>
|
|
{% empty %}
|
|
<li><i>{% trans 'None' %}</i></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
<hr />
|
|
<ul style="line-height: 180%">
|
|
{% trans 'I am candidate for the following elections:' %}
|
|
{% for assignment in assignments %}
|
|
<li><a href="{% model_url assignment %}">{{ assignment }}</a></li>
|
|
{% empty %}
|
|
<li><i>{% trans 'None' %}</i></li>
|
|
{% endfor %}
|
|
</ul>
|