{% extends "base.html" %} {% block title %}My Votes - Governance Dashboard{% endblock %} {% block content %}

My Votes

View all proposals you have voted on.

My Voting History
{% if votes | length > 0 %}
{% for vote, proposal in votes %} {% endfor %}
Proposal My Vote Status Voted On Actions
{{ proposal.title }} {{ vote.vote_type }} {{ proposal.status }} {{ vote.created_at | date(format="%Y-%m-%d") }} View Proposal
{% else %}
You haven't voted on any proposals yet

When you vote on proposals, they will appear here.

Browse Proposals
{% endif %}
{% if votes | length > 0 %}
Yes Votes

{% set yes_count = 0 %} {% for vote, proposal in votes %} {% if vote.vote_type == 'Yes' %} {% set yes_count = yes_count + 1 %} {% endif %} {% endfor %} {{ yes_count }}

No Votes

{% set no_count = 0 %} {% for vote, proposal in votes %} {% if vote.vote_type == 'No' %} {% set no_count = no_count + 1 %} {% endif %} {% endfor %} {{ no_count }}

Abstain Votes

{% set abstain_count = 0 %} {% for vote, proposal in votes %} {% if vote.vote_type == 'Abstain' %} {% set abstain_count = abstain_count + 1 %} {% endif %} {% endfor %} {{ abstain_count }}

{% endif %}
{% endblock %}