Database Contents
{% for proposal_id, data in proposal_data.items() %}
-
{{ data.title }}
{{ data.body }}
Votes
- Block: {{ data.votes.block | length }}
{% for reason in data.votes.block %}
- {{ reason }}
{% endfor %}
- Stand Aside: {{ data.votes.stand_aside | length }}
{% for reason in data.votes.stand_aside %}
- {{ reason }}
{% endfor %}
- Reservations: {{ data.votes.reservations | length }}
{% for reason in data.votes.reservations %}
- {{ reason }}
{% endfor %}
- Agree: {{ data.votes.agree | length }}
{% for reason in data.votes.agree %}
- {{ reason }}
{% endfor %}
Arguments
{% for argument in data.arguments %}
- {{ argument }}
{% endfor %}
{% endfor %}
Back to proposals