{{motion.name}} ({{ 'Running' if motion.running else ('Canceled' if motion.canceled != None else 'Finished') }}) {{motion.type}}
# {{motion.identifier}}
Proposed: {{motion.posed|timestamp}} (UTC) by {{motion.poser}}
{%- if motion.canceled != None %}
Canceled: {{motion.canceled|timestamp}} (UTC) by {{motion.canceler}}
{%- else %}
Votes until: {{motion.deadline|timestamp} (UTC)}
{%- endif %}

{{motion.content}}

{%- 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 %}