]> WPIA git - motion.git/blob - templates/single_motion.html
chg: crop time at second precision
[motion.git] / templates / single_motion.html
1 {% extends "base.html" %}
2 {% block title -%}
3 Motion: {{motion.name}}
4 {%- endblock %}
5 {% block body %}
6 {%- include 'motion.html' %}
7 {%- if motion.running %}
8 <form action="/motion/{{motion.id}}/vote" method="POST">
9 {%- for vote in ['yes','no','abstain'] %}
10 <button type="submit" class="btn btn-{{ 'success' if vote == motion.result else 'primary' }}" name="vote" value="{{vote}}" id="vote-{{vote}}">{{vote}}</button>
11 {%- endfor %}
12 </form>
13 {%- endif %}
14 {%- endblock %}