{{ video.title.current() }}
{% set views = video.views.current() %}
{% set description = video.description.current().split("\n") %}
{% set no_description = description|count == 1 and description[0] == "" %}
{% if not no_description %}
{% endif %}
{{ 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 %}
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 not mto_title and not mto_description %}
- No title or description changes on record {% else %} {% if mto_title %} {% for timestamp in video.title.inner %}
- {% if loop.index == video.title.inner|count %} Current title has been in place since {{ timestamp.strftime("%d/%m/%Y") }} {% else %} {% if loop.index == 1 %} Title was originally {% else %} Title changed to {% endif %} on {{ timestamp.strftime("%d/%m/%Y") }} {% endfor %} {% else %} {% endif %}
- No title changes on record {% endif %} {% if mto_description %} {% for timestamp in video.description.inner %}
- {% if loop.index == video.description.inner|count %} Current description has been in place since {{ timestamp.strftime("%d/%m/%Y") }} {% else %} {% if loop.index == 1 %} Description was originally {% else %} Description changed to {% endif %} on {{ timestamp.strftime("%d/%m/%Y") }} {% endfor %} {% else %} {% endif %}
- No description changes on record {% endif %} {% endif %} {% if not mto_views and not mto_likes %}
- No view or like changes on record {% elif not mto_views %}
- No view changes on record {% elif not mto_likes %}
- No like changes on record {% endif %}
Views over time
{% endif %} {% if mto_likes %}Likes over time
{% endif %} {% endif %}Create Note
Notes
{% for note in video.notes %}{{ note.title }}
{{ note.timestamp|timestamp }}{% if note.body %}{{ note.body }}{% else %}{% endif %}