{% extends "base.html" %} {# Assuming a base template exists or will be created #} {% block title %}Drafts - PoliSage{% endblock %} {% block content %}

Drafts

New Draft
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %} {% if drafts %}
{% for draft in drafts %}
{{ draft.title }}
{{ draft.last_updated.strftime("%Y-%m-%d %H:%M") }}

Status: {{ draft.status }}

Author: {{ draft.author.username if draft.author else "N/A" }}
{% endfor %}
{% else %} {% endif %}
{% endblock %}