{% extends 'ccc/campaigns/base.html' %} {% load static %} {% block title %} Digital Assets {% endblock title %} {% block css %} {% endblock css %} {% block content %}
Update your digital assets here
{% csrf_token %}
{% for field in form %}
{{field.label_tag}}
{{field}}
{%if field.errors %}
{{field.errors}}
{% endif %}
{% endfor %}
{% if form.non_field_errors%}
{{form.non_field_errors}}
{% endif %}
{% endblock content %}