{% extends "base.html" %} {% block title %}My Votes - Governance Dashboard{% endblock %} {% block content %}
View all proposals you have voted on.
Proposal | My Vote | Status | Voted On | Actions |
---|---|---|---|---|
{{ proposal.title }} | {{ vote.vote_type }} | {{ proposal.status }} | {{ vote.created_at | date(format="%Y-%m-%d") }} | View Proposal |
When you vote on proposals, they will appear here.
Browse Proposals{% set yes_count = 0 %} {% for vote, proposal in votes %} {% if vote.vote_type == 'Yes' %} {% set yes_count = yes_count + 1 %} {% endif %} {% endfor %} {{ yes_count }}
{% set no_count = 0 %} {% for vote, proposal in votes %} {% if vote.vote_type == 'No' %} {% set no_count = no_count + 1 %} {% endif %} {% endfor %} {{ no_count }}
{% set abstain_count = 0 %} {% for vote, proposal in votes %} {% if vote.vote_type == 'Abstain' %} {% set abstain_count = abstain_count + 1 %} {% endif %} {% endfor %} {{ abstain_count }}