{% extends "fretboard/base.html" %} {% load fretboard_tags social_tags typogrify_tags voting_tags %} {% block title %} {{ topic.name }} {% if page_obj.number != 1 %} (Page {{ page_obj.number }}){% endif %}: {{ forum_name }} : {% endblock %} {% block description %}'{{ topic.name }}'. Posted in {{ forum_name }} at {% endwith %} {{ FORUM_BASE_NAME }} {% if page_obj.number != 1 %} (Page {{ page_obj.number }}){% endif %} {% endblock %} {% block canonical %} {% endblock %} {% block bodyid %}topic-detail{% endblock %} {% block content %}
{% include "fretboard/includes/paginator.html" %}

{{ FORUM_BASE_NAME }}{{ forum_name }}

{{ topic.name|truncatechars:"70"|typogrify }}

{% include "fretboard/includes/post_list.html" %} {% include "fretboard/includes/paginator.html" %}
{% if locked %}

This topic is locked. No further posts are being accepted.

{% else %} {% with topic as object %} {% social_links object user authenticated_request vote_down=True vote_down_msg="This is a terrible topic, and I wish it would just go away." %} {% endwith %} {% if authenticated_request and user.is_active %}
{% include "fretboard/includes/post_form.html" %}
{% else %}

Want to join the conversation? sign in to post.

{% endif %} {% endif %}
{% endblock %} {% block init_forum_js %} var postlist = true; var topic_short_url = '{{ topic.get_short_url }}page'; {% endblock %}