{% extends "base.html" %} {% block title %}View Draft: {{ draft.title }} - PoliSage{% endblock %} {% block content %}

{{ draft.title }}

Last updated: {{ draft.last_updated.strftime("%Y-%m-%d %H:%M") }} by {{ draft.author.username if draft.author else "N/A" }}

Draft Details
Status
{{ draft.status }}
Policy Intent
{{ draft.policy_intent | nl2br }}
{% if draft.related_legislation %}
Related Legislation
{{ draft.related_legislation.title }} {# Link to legislation view later #}
{% endif %}
Draft Content
{% if draft.content %}
{{ draft.content }}
{% else %}

No content added yet.

{% endif %}
{% endblock %}