{% 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 %}
| {{scrobble.video}} |
{{scrobble.timestamp|date:"N d"}} |
{% empty %}
| No movies watched this week |
{% endfor %}
{% endif %}
{% if videos_this_month %}
This Month
{% for scrobble in videos_this_month %}
| {{scrobble.video}} |
{{scrobble.timestamp|date:"N d"}} |
{% empty %}
| No movies watched this month |
{% endfor %}
{% endif %}
{% endif %}
{% if channels_this_week or channels_this_month %}
YouTube Channels
{% if channels_this_week %}
This Week
{% for item in channels_this_week %}
| {{item.channel}} |
{{item.count}} videos |
{% empty %}
| No YouTube videos watched this week |
{% endfor %}
{% endif %}
{% if channels_this_month %}
This Month
{% for item in channels_this_month %}
| {{item.channel}} |
{{item.count}} videos |
{% empty %}
| No YouTube videos watched this month |
{% endfor %}
{% endif %}
{% endif %}
{% endif %}