{% 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}}
{%- endfor %}
{%- endif %} {%- if motion.running %} {%- if may_vote %}
{%- for vote in ['yes','no','abstain'] %} {%- endfor %}
{%- endif %} {%- if may_cancel %}
{%- endif %} {%- endif %} Back {%- endblock %}