{% extends 'ddm_core/page_with_form.html' %} {% load static %} {% block page_title %}Edit Branding{% endblock page_title %} {% block main_heading %}Branding{% endblock main_heading %} {% block sub_heading %} Customize the look of your project {% endblock sub_heading %} {% block form_content %}
{{ form.non_field_errors }} {% for field in form %} {% if field.name in "img_header_left,img_header_right" %}

{{ field.label }}

{{ field.errors }}
{% if field.value %} current image file {% else %}
No image selected
{% endif %}
{% endif %} {% endfor %}
{% endblock form_content %}