{% extends "layout.html" %} {% block title %}{{ "Edit Post" if is_edit else "Post Reply" }} - Community Forum{% endblock %} {% block breadcrumb %} Home / {{ topic.category.name }} / {{ topic.title }} / {{ "Edit Post" if is_edit else "Reply" }} {% endblock %} {% block content %}

{{ "Edit Post" if is_edit else "Post Reply" }}

{% if is_edit %} Edit your message in "{{ topic.title }}" {% elif is_quote %} Reply with quote to "{{ topic.title }}" {% else %} Respond to "{{ topic.title }}" {% endif %}

{% if is_edit %}
{% else %} {% endif %} {{ form.hidden_tag() }} {{ form.topic_id }}
{{ form.content(class="w-full px-4 py-2 border border-gray-300 editor-textarea focus:outline-none focus:border-blue-500 focus:ring focus:ring-blue-200", id="content", rows="10") }}
{% if form.content.errors %}
{% for error in form.content.errors %}

{{ error }}

{% endfor %}
{% endif %}
Cancel
{% endblock %} {% block extra_js %} {% endblock %}