{% extends "base.html" %} {% load i18n %} {% block title %} {% trans "Edit DVD ISO Location" %} {% endblock %} {% block content %}
{% block header %}

{% trans "Edit DVD ISO Location" %}

{% endblock %} {% if info_messages %} {% include "info_message_bar.html" %} {% endif %} {% if error_messages %} {% include "error_message_bar.html" %} {% endif %}
{% if form.location_description.errors %} {% for error in form.location_description.errors %} {% endfor %} {% endif %} {% if form.path_to_ISO.errors %} {% for error in form.path_to_ISO.errors %} {% endfor %} {% endif %}
{% if form.location_description.errors %} X {% endif %} {{ form.location_description.label_tag }} {{ form.location_description }}
{{ error|escape }}
{% if form.path_to_ISO.errors %} X {% endif %} {{ form.path_to_ISO.label_tag }} {{ form.path_to_ISO }}
{{ error|escape }}
{{ form.default_for.label_tag }} {{ form.default_for }}

{% endblock content %}