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

{{ name }}'s videos

{% if channel.videos %}
{% for video in channel.videos %}

{{ video.title.current() }}

{% if video.updated() %}🌀 {% endif %} {{ video.uploaded.strftime("%d/%m/%Y") }}

{% endfor %}
{% else %}

No videos found!

{% endif %} {% endblock %}