{% extends "base.html" %} {% block content %} {{ block.super }}

Delete {{ survey }} Questionnaire

Deleting this Questionnaire will remove any answers associated with it. These relationships are listed below:

Danger Zone

{% if questions and survey.completed %}
{% csrf_token %} {% for question in questions %} {% include "defectDojo-engagement-survey/survey_fields.html" with form=question %} {% endfor %}
{% else %}

No answers found.

{% endif %} {% if rels|length > 1 %} {% else %}

No relationships found.

{% endif %}
{% csrf_token %} {{ form }}


{% endblock %} {% block add_styles %} {{ block.super }} .form-read-only {text-align: left !important } .form-read-only .control-label{width: 100%; float: none; text-align: left;} .form-read-only textarea {width: 90% !important;} .form-read-only .controls {margin-left: 10px;} .form-read-only .control-group {margin-bottom: 10.5px; margin-left: 10px; text-align: left;} {% endblock %}