{% extends 'base.html' %} {% load static %} {% load form_tags %} {% block title %}Delete {{ object }}{% endblock %} {% block content %}

Delete Field

Warning! This action cannot be undone.

Are you sure you want to delete the response "{{ object.label }}"?

Response #{{ object.id }} {% if object.submitted_by %} by {{ object.submitted_by.username }} {% else %} Anonymous {% endif %}
{{ object.submitted_at|date:"M d, Y H:i" }}
{% for data in object.data.all|slice:":3" %}
{{ data.field.label }}: {{ data.get_display_value|truncatewords:8 }}
{% endfor %} {% if object.data.count > 3 %}
{{ object.data.count|add:"-3" }} more field{{ object.data.count|add:"-3"|pluralize }}
{% endif %}

This response will be permanently deleted.

{% endblock %}