{% extends "base.html" %} {% block title %}{{ topic.title }} - Forum{% endblock %} {% block content %}

{% if topic.is_pinned %} {% endif %} {{ topic.title }} {% if topic.is_locked %} {% endif %}

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 }} 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 %}