{% extends 'base/base.html' %} {% block content %} {% set last_reply = topic.replies.first() %}

{{ topic.title}}

{% for tag in topic.tags %} {{ link_base.tag(tag) }} {% endfor %}
{{ link_base.user(topic.author.username )}} 于 {{ topic.publish}}发布 {% if last_reply %} 最后由{{ link_base.user(last_reply.author.username )}}于 {{ last_reply.publish}}回复 {% endif %}
{{ topic.content}}
{% include 'topic/replies.html' %}
{% include 'topic/panel.html' %}
{% endblock %}