{% extends "base.html" %} {% block title %}Proposals - Governance Dashboard{% endblock %} {% block content %} {% if success %}
{% endif %}
About Proposals

Proposals are formal requests for changes to the platform that require community approval. Each proposal includes a detailed description, implementation plan, and voting period. Browse the list below to see all active and past proposals.

All Proposals
Create New Proposal
{% if proposals and proposals|length > 0 %}
{% for proposal in proposals %} {% endfor %}
Title Creator Status Created Voting Period Actions
{{ proposal.title }} {{ proposal.creator_name }} {{ proposal.status }} {{ proposal.created_at | date(format="%Y-%m-%d") }} {% if proposal.voting_starts_at and proposal.voting_ends_at %} {{ proposal.voting_starts_at | date(format="%Y-%m-%d") }} to {{ proposal.voting_ends_at | date(format="%Y-%m-%d") }} {% else %} Not set {% endif %} View
{% else %}
No proposals found
{% if status_filter or search_filter %}

No proposals match your current filter criteria. Try adjusting your filters or view all proposals.

{% else %}

There are no proposals in the system yet.

{% endif %} Create New Proposal
{% endif %}
{% endblock %}