{% 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 {{proxyname[0][0]}} {%- endif %}
{%- for vote in ['yes','no','abstain'] %} {%- endfor %}
{%- for p in proxyvote %}

Vote for {{p.email}}

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

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

{%- endif %} {%- endif %} Back {%- endblock %}