{% extends 'ddm/project_admin/generic/page_with_form.html' %} {% block page_title %}Delete Blueprint{% endblock %} {% block main_heading %}Delete Blueprint "{{ object.name }}"{% endblock %} {% block main_top %}

You are about to delete the following blueprint:

Name: {{ object.name }}
File Format: {{ object.exp_file_format }}
Expected Fields: {{ object.expected_fields }}
Extracted Fields: {{ object.extracted_fields }}
All collected data associated with this blueprint will also be deleted.

The following questions and instructions associated with this blueprint will also be deleted:

Instructions:

    {% for instruction in object.instruction_set.all %}
  • {{ instruction }}
  • {% empty %} No instructions associated to this blueprint were found. {% endfor %}

Questions:

    {% for question in object.questionbase_set.all %}
  • {{ question }}
  • {% empty %} No questions associated to this blueprint were found. {% endfor %}
{% endblock %} {% block main_form %}
{% csrf_token %}

Are you sure you want to delete this blueprint along with all associated data, questions, and instructions? This action cannot be reversed.

{% endblock %} {% block breadcrumbs %} Projects / "{{ project.name|truncatechars:15 }}" Project / Donation Blueprints / Delete Blueprint {% endblock %}