{% extends "web/base.html" %} {% load films_extras %} {% block secondary_nav %} Add Film {% if object %} Update Film {% endif %} {% endblock secondary_nav %} {% block content %} {% if object %}

Update {{ film.title }}

{% else %}

Add a Film

{% endif %}

Search on IMDB (copy the link when you find the film and come back).

{% csrf_token %} {{ form.as_p }} {% if object %} {% define "Save" as button_text %} {% else %} {% define "Add Film" as button_text %} {% endif %}
{% endblock content %}