{% extends "base.html.j2" %} {% import 'macros.imp.j2' as macros %} {% block title %}Subscriptions {#for {{ current_user.name | e }}#}{% endblock %} {% block content %} {{ super() }}
{% for row in rows %} {% set badge = 'LIVE' if row.livestream else 'SOON' if row.premiere else row.length|format_time %} {% call macros.card(row.video_id, row.title, row.published|format_date, row.pinned, badge=badge) %} {{ macros.infobar_subscriptions(row.video_id, row.channel_id, row.author) }} {% endcall %} {% endfor %} {{ macros.dummycard() }}
{% if not rows|length %}no more results{% endif %}
{{ macros.more({'page':page+1}) if rows|length }}
{% endblock %} {% block footer %}
Manage Subscriptions AGPLv3 Source Code {% endblock %}