{% extends "base.html" %} {% block title -%} {{_('Motion')}}: {{motion.name}} {%- endblock %} {% block body %} {%- include 'motion.html' %} {%- if votes %}
{{_('Motion Votes')}}
{%- for row in votes %}
{{row.email}}: {{row.result}}{%- if row.proxyemail %} : {_('given by')}} {{row.proxyemail}}{%- endif %}
{%- endfor %}
{%- endif %} {%- if motion.running %} {%- if may_vote %}

{{_('My vote')}}

{%- if proxyname %} {{_('Given by %(pn)s', pn=proxyname[0][0])}} {%- endif %}
{%- for vote in ['yes', 'no', 'abstain'] %} {%- endfor %}
{%- for p in proxyvote %}

{{_('Vote for %(email)s', email=p.email)}}

{%- if p.owneremail and p.result%} {{_('Voted by %(email)s', email=p.owneremail)}} {%- endif %}
{%- for vote in ['yes', 'no', 'abstain'] %} {%- endfor %}
{%- endfor %} {%- endif %} {%- if may_cancel %}

{%- endif %} {%- if may_finish %}

{%- endif %} {%- endif %} {{_('Back')}} {%- endblock %}