{% 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 %}
There are {{ num_to_watch|apnumber }} films to watch, ordered from the most to the least popular based on everyone's votes. {% if object_list %}
There are no films left to watch :(
Add a film! {% endfor %} {% if watched_films %}
There are no films added :(
Add a film! {% endif %} {% endblock %}