{% extends "base_list.html" %} {% block title %}Videos{% endblock %} {% block head_extra %} {% endblock %} {% block lists %} {% if videos_this_week or videos_this_month or channels_this_week or channels_this_month %}
{% if videos_this_week or videos_this_month %}

Movies Watched

{% if videos_this_week %}

This Week

{% for scrobble in videos_this_week %} {% empty %} {% endfor %}
{{scrobble.video}} {{scrobble.timestamp|date:"N d"}}
No movies watched this week
{% endif %} {% if videos_this_month %}

This Month

{% for scrobble in videos_this_month %} {% empty %} {% endfor %}
{{scrobble.video}} {{scrobble.timestamp|date:"N d"}}
No movies watched this month
{% endif %}
{% endif %} {% if channels_this_week or channels_this_month %}

YouTube Channels

{% if channels_this_week %}

This Week

{% for item in channels_this_week %} {% empty %} {% endfor %}
{{item.channel}} {{item.count}} videos
No YouTube videos watched this week
{% endif %} {% if channels_this_month %}

This Month

{% for item in channels_this_month %} {% empty %} {% endfor %}
{{item.channel}} {{item.count}} videos
No YouTube videos watched this month
{% endif %}
{% endif %}
{% endif %}
{% include "_scrobblable_list.html" %}
{% endblock %}