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

{{reply.user.display_name}}

Submitted {{board.timestamp}}

{{reply.body|markdown|safe}}
{% csrf_token %}
{% csrf_token %}
{% 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 %}