You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.5 KiB
HTML
48 lines
1.5 KiB
HTML
{% import "macros.htm" as macros %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
{% set title = element.title %}
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>{{ title }}</title>
|
|
{{ macros.shared_style() }}
|
|
</head>
|
|
<body>
|
|
<a href="/media"><- back to list</a>
|
|
<h1>{{ title }}</h1>
|
|
<h2>Notes</h2>
|
|
<pre>{{ element.notes or "" }}</pre>
|
|
<h2>Properties</h2>
|
|
<ul>
|
|
<li>
|
|
{{ macros.media_element_buttons(element) }}
|
|
</li>
|
|
<li>Can be considered: {{ element.can_considered | tenary("Yes", "no") }}</li>
|
|
<li>
|
|
Date:
|
|
{{ element.release_date }}
|
|
</li>
|
|
</ul>
|
|
<h2>Part of Collections</h2>
|
|
<ul>
|
|
{% for link in element.collection_links %}
|
|
<li>
|
|
<a href="{{ link.collection.info_link }}">{{ link.collection.title }}</a>
|
|
{%- if link.season != 0 -%}
|
|
, Season {{ link.season }}
|
|
{% endif %}
|
|
{%- if link.episode != 0 -%}
|
|
, Episode {{ link.episode }}
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<h2>Links</h2>
|
|
<ul>
|
|
{% for link in element.uris %}
|
|
<li>{{ link.uri | as_link }} {% if element.uri == link.uri %}*{% endif %}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html>
|