{% extends "web/base.html" %} {% comment %} Takes in: - {{ films }} Films to watch - {{ watched_films }} Films already watched - {{ num_to_watch }} {% endcomment %} {% load humanize %} {% block secondary_nav %} Add Film {% endblock secondary_nav %} {% block content %}

Films

There are {{ num_to_watch|apnumber }} films to watch, ordered from most to least popular based on everyone's votes. {% if object_list %} {% for film in films %} {% include "votes/includes/film_card.html" with film=film only %} {% empty %}

There are no films left to watch :(

Add a film! {% endfor %} {% if watched_films %}

Already Seen

{% for film in watched_films %} {% include "votes/includes/film_card.html" with film=film only %} {% endfor %} {% endif %} {% else %}

There are no films added :(

Add a film! {% endif %} {% endblock %}