ascroll for item/edits

This commit is contained in:
j 2021-10-10 16:06:43 +01:00
commit 21db49fe48
19 changed files with 348 additions and 75 deletions

View file

@ -1,21 +1,23 @@
{% extends "base.html" %}
{% block main %}
<video src="{{ settings.TIMELINE_PREFIX }}{{ film.padma_id }}/loop.mp4" autoplay loop muted></video>
<div class="film">
<div class="info">
<h1>{{ film.data.title | safe }}</h1>
<h2>{{ film.data.director|join:", "|safe }}</h2>
<p>{{ film.data.summary|safe }}</p>
</div>
<div>
<a href="" id="play-fullscreen">Watch Fullscreen</a>
</div>
<div>
<a href="play/en">Watch with Annotations</a>
</div>
<div>
<a href="play/zh">Watch with Annotations (Mandarin title)</a>
<video src="{{ settings.TIMELINE_PREFIX }}{{ film.padma_id }}/loop.mp4" autoplay loop muted></video>
<div class="play">
<div>
<a href="" id="play-fullscreen">Watch Fullscreen</a>
</div>
{% for text in film.related_texts %}
<div>
<a href="{{ text.get_absolute_url }}">{{ text.title }}</a>
</div>
{% endfor %}
</div>
{% endblock %}