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

Voting is a fundamental right of all token holders in our governance system. Each vote carries weight proportional to your token holdings, ensuring fair representation. The voting statistics below show the community's collective decision-making across all proposals.

Yes Votes

{{ total_yes_votes }}

No Votes

{{ total_no_votes }}

Abstain Votes

{{ total_abstain_votes }}

My Voting History
{% if votes | length > 0 %}
{% for item in votes %}{% set vote = item.0 %}{% set proposal = item.1 %} {% 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 %}
{% endblock %}