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.

28 lines
901 B
HTML

{% import "macros.htm" as macros %}
<!DOCTYPE html>
<html>
{% set title = "Dashboard" %}
<head>
<meta charset="utf-8"/>
<title>{{ title }}</title>
{{ macros.shared_style() }}
</head>
<body>
{{ macros.body_header() }}
<h1>{{ title }}</h1>
{% if began_videos %}
<h2>Began Videos</h2>
{{ macros.media_table(began_videos) }}
{% endif %}
<h2>From Pinned Collections</h2>
{% if links_from_pinned_collections %}
{{ macros.link_differ_table(links_from_pinned_collections) }}
{% else %}
<i>No pinned collections with episodes to watch found. <a href="/collection/pinned">See pinned collections</a></i>
{% endif %}
<a href="/collection/pinned"></a>
<h2>Other Latest Videos</h2>
{{ macros.media_table(media_list) }}
</body>
</html>