{{motion.name}} ({{ _('Running') if motion.running else (_('Canceled') if motion.canceled != None else _('Finished')) }}) {{motion.type}}
# {{motion.identifier}} {%- if singlemotion == False %} {{ _('Vote') if motion.running else _('Result') }} {%- endif %}
{{_('Proposed')}}: {{_('%(dt)s (UTC) by %(user)s', dt=motion.posed|timestamp, user=motion.poser)}}
{%- if motion.canceled != None %}
{{_('Canceled')}}: {{_('%(dt)s (UTC) by %(user)s', dt=motion.canceled|timestamp, user=motion.poser)}}
{%- else %}
{{_('Votes until')}}: {{_('%(dt)s (UTC)', dt=motion.deadline|timestamp)}}
{%- endif %}

{{motion.content|markdown}}

{%- if motion.yes or motion.no or motion.abstain %}

{%- for vote in ['yes', 'no', 'abstain'] %} {{_(vote)|capitalize}} {{motion[vote]}}
{%- endfor %}

{%- endif %} {%- if motion.canceled != None %}

{{_('Cancelation reason')}}: {{motion.cancelation_reason}}

{%- endif %}
{%- block content %}{% endblock %}