{% extends "base.html" %} {% block title %}{{ topic.title }} - Forum{% endblock %} {% block content %} Forum {{ topic.category.name }} {% if topic.is_pinned %}Pinned{% endif %} {% if topic.is_locked %}Locked{% endif %} {{ topic.title }} Started by {{ topic.author.username }} · {{ topic.created_at.strftime('%B %d, %Y at %H:%M') }} {{ topic.author.username[0].upper() }} {{ topic.author.username }} {{ topic.created_at.strftime('%B %d, %Y at %H:%M') }} {{ topic.content | safe }} {% if replies %} {{ replies|length }} {{ 'Reply' if replies|length == 1 else 'Replies' }} {% for reply in replies %} {{ reply.author.username[0].upper() }} {{ reply.author.username }} {{ reply.created_at.strftime('%B %d, %Y at %H:%M') }} {{ reply.content | safe }} {% endfor %} {% endif %} {% if not topic.is_locked %} {% include "forum/partials/reply_form.html" %} {% else %} This topic is locked. No new replies can be added. {% endif %} {% endblock %}
This topic is locked. No new replies can be added.