{% extends "base.html" %} {% block title %}Proposals - Governance Dashboard{% endblock %} {% block content %} {% if success %}
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.
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 |
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