2017-11-10 15:21:21 +00:00
{% extends "base.html" %}
2017-11-11 13:33:27 +00:00
2017-11-11 11:30:16 +00:00
{% block title %}
Episode "{{episode.name}}" - S{{episode.season.number}}E{{episode.episode}} - {{show.name}} - Episodes.Community
{% endblock %}
2017-11-11 13:33:27 +00:00
{% block meta %}
{{ block.super }}
< meta property = "og:title" content = "{{episode.name}}" >
< meta property = "og:type" content = "video.episode" >
< meta property = "og:video:series" content = "{{show.name}}" >
2017-11-11 13:37:36 +00:00
< meta property = "og:image" content = "/media/uploaded_resources/{{show.artwork}}" >
2017-11-11 13:33:27 +00:00
< meta property = "og:url" content = "https://{{show.abbr}}.episodes.community/episode/{{episode.season.number}}/{{episode.episode}}-{{episode.name|slugify}}" >
{% endblock %}
2017-11-10 15:21:21 +00:00
{% block content %}
2017-12-15 11:33:01 +00:00
{% load guardian_tags %}
{% get_obj_perms request.user for show as "show_perms" %}
2017-11-10 15:21:21 +00:00
< section class = "show-details" >
< div class = "banner" style = "background-image: url(/media/uploaded_resources/{{show.banner}});" > < / div >
< div class = "banner-cover" >
< div class = "artwork" >
2017-12-26 17:11:18 +00:00
{% if episode.season.artwork %}
< img src = "/media/uploaded_resources/{{episode.season.artwork}}" >
{% else %}
< img src = "/media/uploaded_resources/{{show.artwork}}" >
{% endif %}
2017-11-10 15:21:21 +00:00
< / div >
2017-12-26 17:11:18 +00:00
< div class = "details season" >
2017-11-10 15:21:21 +00:00
< h1 > {{show.name}}< / h1 >
2017-12-26 17:11:18 +00:00
{% if episode.season.name %}
< h3 > {{ episode.season.name }}< / h3 >
{% else %}
< h3 > Season {{ episode.season.number }}< / h3 >
{% endif %}
2017-11-10 15:21:21 +00:00
< p class = "description" >
2017-12-26 17:11:18 +00:00
{{ episode.season.description }}
2017-11-10 15:21:21 +00:00
< / p >
< / div >
< / div >
< / section >
< section class = "submissions" >
2017-11-11 12:57:52 +00:00
< a href = "/show/{{show.abbr}}" class = "button" > < i class = "fa fa-fw fa-home" > < / i > Show Index< / a >
2017-11-13 17:42:10 +00:00
{% if user.is_authenticated %}
2017-12-15 11:33:01 +00:00
{% if "change_show" in show_perms %}
< a href = "/show/{{show.abbr}}/episode/{{episode.season.number}}/{{episode.episode}}/submit" class = "button modbutton" > < i class = "fa fa-fw fa-plus" > < / i > Add New Link< / a >
{% else %}
< a href = "/show/{{show.abbr}}/episode/{{episode.season.number}}/{{episode.episode}}/submit" class = "button" > < i class = "fa fa-fw fa-plus" > < / i > Submit New Link< / a >
{% endif %}
2017-11-11 13:33:27 +00:00
{% else %}
< span class = "fillertext" > < a href = "/login" > Log in< / a > to submit a link< / span >
2017-11-11 12:57:52 +00:00
{% endif %}
2017-11-10 15:21:21 +00:00
< h1 > Watch < q > {{episode.name}}< / q > From< / h1 >
< div class = "submission-list" >
{% for sbm in submissions %}
2017-11-10 15:47:45 +00:00
< div class = "submission{% if sbm.positives < sbm.negatives %} buried{% endif %}" >
2017-11-11 09:24:39 +00:00
< a href = "{{sbm.url}}" class = "link" > < i class = "fa fa-fw fa-globe" > < / i > {{sbm.url}}< / a >
< div class = "vote-btns" data-vote-id = "{{sbm.id}}" >
2017-11-11 18:34:48 +00:00
< form method = "POST" action = "/show/{{show.abbr}}/vote/{{sbm.id}}/1" >
{% csrf_token %}
< button class = "vote-positive" >
< i class = "fa fa-fw fa-thumbs-up" > < / i > {{sbm.positives}}
< / button >
< / form >
< form method = "POST" action = "/show/{{show.abbr}}/vote/{{sbm.id}}/0" >
{% csrf_token %}
< button class = "vote-negative" >
< i class = "fa fa-fw fa-thumbs-down" > < / i > {{sbm.negatives}}
< / button >
< / form >
2017-11-10 15:21:21 +00:00
< / div >
2017-12-15 11:33:01 +00:00
< div class = "data" >
< span class = "timestamp" > Submitted {{sbm.timestamp}} by {{sbm.user.display_name}}< / span > < span class = "divider" > · < / span >
{% if "change_show" in show_perms %}
< a href = "/show/{{show.abbr}}/submission/{{sbm.id}}/moderate" class = "button modbutton" > < i class = "fa fa-fw fa-shield" > < / i > Change< / a >
{% else %}
< a href = "/report?url={{ request.get_full_path|urlencode }}&submission={{ sbm.id }}" class = "report" > Report Invalid or Spam< / a >
{% endif %}
< / div >
2017-11-10 15:47:45 +00:00
< / div >
{% empty %}
< h3 > Nobody has submitted any links yet.< / h3 >
2017-11-10 15:21:21 +00:00
{% endfor %}
< / div >
< / section >
{% endblock %}