{% extends "base.html" %} {% block title %} {{board.title}} - {{show.name}} Discussions - Episodes.Community {% endblock %} {% load markdown %} {% load guardian_tags %} {% block content %} {% get_obj_perms request.user for show as "show_perms" %}

{% if board.locked %}{% endif %}{% if board.pinned %}{% endif %}{{board.title}}

{% if board.locked %}

This board is locked

{% else %} {% if user.is_authenticated %}  Reply {% else %}

Log in to reply

{% endif %} {% endif %}

Created {{board.timestamp}} by {{board.user.display_name}}

{% for reply in replies %}
{% if reply.deleted %}

This reply has been deleted by a moderator.

ID: {{reply.pk}} {% if "can_moderate_board" in show_perms or board.user == user %}
{{reply.body}}
Restore Ban {% endif %}
{% else %}

{{reply.user.display_name}}

Submitted {{board.timestamp}}

{{reply.body|markdown|safe}}
{% if user.is_authenticated %} {% if "can_moderate_board" in show_perms %} Delete Content Ban {% elif not user == reply.user %} {% endif %} {% endif %}
{% if not board.locked %}
{% csrf_token %}
{% csrf_token %}
{% else %}  {{reply.positives}}  {{reply.negatives}} {% endif %}
{% endif %}
{% empty %}

Nobody has replied to this board!

{% endfor %} {% if replies.has_other_pages %} {% endif %} {% if user.is_authenticated and not board.locked %}

Quick Reply

{% include "form.html" %}
{% endif %} {% if user.is_authenticated %}

Board Tools

{% endif %}
{% endblock %}