This commit is contained in:
j 2021-09-28 15:10:22 +02:00
commit 0508d8cd9a
53 changed files with 765 additions and 0 deletions

View file

@ -0,0 +1,7 @@
{% extends "base.html" %}
{% block main %}
<h1>{{ film.data.title }}</h1>
{% if film.vimeo_id %}
<iframe src="https://player.vimeo.com/video/{{ film.vimeo_id }}" width="640" height="564" frameborder="0" allow="autoplay; fullscreen" allowfullscreen></iframe>
{% endif %}
{% endblock %}