{% extends "base.html" %} {% block title %}{{ proposal.title }} - Governance Proposal{% endblock %} {% block content %}
{{ proposal.description }}
{% if proposal.voting_starts_at and proposal.voting_ends_at %}
Start: {{ proposal.voting_starts_at | date(format="%Y-%m-%d") }}
End: {{ proposal.voting_ends_at | date(format="%Y-%m-%d") }}
{% else %}
Not set
{% endif %}
Yes: {{ results.yes_count }} ({{ yes_percent }}%)
No: {{ results.no_count }} ({{ no_percent }}%)
Abstain: {{ results.abstain_count }} ({{ abstain_percent }}%)
Total Votes: {{ results.total_votes }}
You must be logged in to vote.
Login to VoteVoter | Vote | Comment | Date |
---|---|---|---|
{{ vote.voter_name }} | {{ vote.vote_type }} | {% if vote.comment %}{{ vote.comment }}{% else %}No comment{% endif %} | {{ vote.created_at | date(format="%Y-%m-%d %H:%M") }} |
No votes have been cast yet.
{% endif %}