{% extends 'base.html' %} {% block styling %} {% endblock %} {% block content %}

{{ video.title.current() }}

{% set views = video.views.current() %}

{{ views }} view{% if views != 1 %}s{% endif %} {{ video.uploaded.strftime("%d/%m/%Y") }} {% if video.updated() %} 🌀 {% endif %}

🔗 💾 {% set likes = video.likes.current() %} {% if likes or likes == 0 %} 👍 {{ likes }} {% endif %}

{% set description = video.description.current().split("\n") %} {% set no_description = description|count == 1 and description[0] == "" %} {% if not no_description %} {% endif %}

History

{% set mto_title = video.title.inner|count != 1 %} {% set mto_description = video.description.inner|count != 1 %} {% set mto_views = video.views.inner|count != 1 %} {% set mto_likes = video.likes.inner|count != 1 %} {% if mto_views or mto_likes %} {% if mto_views %}

Views over time

{% endif %} {% if mto_likes %}

Likes over time

{% endif %} {% endif %}

Create Note

00:00

{% if video.notes %}

Notes

{% for note in video.notes %}
{{ note.id }}

{% if note.body %}{{ note.body }}{% else %}{% endif %}

{% endfor %} {% endif %}
{% endblock %} {% block scripts %} {% endblock %}