{% extends 'shared/core/base.html' %} {% load static %} {% block head %} {% endblock %} {% block content %}
{{ anime.title.english|default:anime.title.romaji }}
{% if user.is_authenticated %}
Loading...
{% else %}
Authentication Required
No undeserving lackeys allowed among these parts of the internet. Either register or login to access this content.
{% endif %}
Episode {{ anime.current_episode.number }}. {{ anime.current_episode.title }}
00:00
00:00
{% if streaming_data.data.tracks %}
{% endif %}
{{ anime.title.english }}
Status: {{ anime.status }}
Type: {{ anime.type }}
Episodes: {{ anime.totalEpisodes }}
{% if anime.duration %}
Duration: {{ anime.duration }} min
{% endif %} {% if anime.rating %}
Rating: ★ {{ anime.rating }}%
{% endif %}
Studios: {{ anime.studios|join:', ' }}

Episodes

{{ anime.totalEpisodes }} Total
{% for episode in anime.episodes %}
Episode {{ episode.number }}
{{ episode.number }}. {{ episode.title }}
{% endfor %}

{{ anime.title.english|default:anime.title.romaji }}

{{ anime.description|safe }}

Genres: {% for genre in anime.genres %} {{ genre }} {% endfor %}

Characters

{% for character in anime.characters %}
{{ character.name.full }}
{{ character.name.full }} {{ character.role }}
{% endfor %}
{% include 'partials/_anime_list.html' with anime_list=anime.relations title='Related Anime' %}
{% include 'partials/_anime_list.html' with anime_list=anime.recommendations title='Recommended Anime' %}
{% endblock %} {% block scripts %} {% if user.is_authenticated %} {{ streaming_data.data.tracks|json_script:'tracks-data' }} {% endif %} {% endblock %}