{% extends "base.html" %} {% block title %} {{show.name}} Discussions - Episodes.Community {% endblock %} {% block content %}

{{show.name}} Discussion Boards

{% if user.is_authenticated %}  Create New Board {% else %} Log in to create boards {% endif %}
Board Name
Latest Reply
{% for board in boards %}

{{board.title}}

Submitted {{board.timestamp}} by {% if board.user.is_staff %} {% endif %} {{board.user.display_name}}
No replies
{% empty %}

Nobody has started any discussions for this show!

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