{% extends "forum/base.html" %} {% load humanize %} {% load activity_tags %} {% block title %}{{ topic.title }}{% endblock %} {% block section_title %}{{ topic.title }}{% endblock %} {% block forum_content %}
Forum Home · {{ topic.forum.name }}

{{ topic.title }}

{{ topic.message.text }}

{{ topic.created|naturaltime }}


{{ topic.user.username }}
{% if user.is_authenticated %} {% if user|is_following:topic.user %}
Unfollow
{% else %}
Follow
{% endif %}
Subscribe
{% endif %}

Reply Subscribe
{% for message in messages %}
{{ message.user.username }}

{{ message.text }}

{{ message.created|naturaltime }}

{% empty %}

Sorry, no messages in here yet.

{% endfor %}
{% if messages.has_other_pages %}
{% endif %}
{% endblock %}