{% extends "base.html" %} {% block title %} Episode "{{episode.name}}" - S{{episode.season.number}}E{{episode.episode}} - {{show.name}} - Episodes.Community {% endblock %} {% block meta %} {{ block.super }} {% endblock %} {% block content %} {% load guardian_tags %} {% get_obj_perms request.user for show as "show_perms" %}

Watch {{episode.name}} From

{% for sbm in submissions %}
{% if forloop.counter0 == 0 and sbm.embed and not sbm.positives < sbm.negatives %}
{% endif %}
{% csrf_token %}
{% csrf_token %}
{% get_obj_perms sbm.user for show as "publisher_perms" %} Submitted {{sbm.timestamp}} by {% if sbm.user.is_staff or "can_moderate_show" in publisher_perms %} {% endif %} {{sbm.user.display_name}} · {% if "can_moderate_show" in show_perms %}  Change {% else %} Report Invalid or Spam {% endif %}
{% empty %}

Nobody has submitted any links yet.

{% endfor %}
{% if user.is_authenticated %} {% if "can_moderate_show" in show_perms %}  Add New Link {% else %}  Submit New Link {% endif %} {% else %} Log in to submit a link {% endif %}

Discuss {{episode.name}} on the discussion boards!

{% endblock %}