{% extends 'django_forms_workflows/base.html' %} {% block title %}Resubmit – {{ submission.form_definition.name }} - {{ site_name }}{% endblock %} {% block content %}
Resubmit Form

Would you like to start a new submission for {{ submission.form_definition.name }} pre-filled with the data from your previous {% if submission.status == 'rejected' %} Rejected {% else %} Withdrawn {% endif %} submission?

Original submission: #{{ submission.id }}
{% if submission.submitted_at %} Submitted: {{ submission.submitted_at|date:"Y-m-d H:i" }}
{% endif %} Status: {{ submission.get_status_display }}
{% if existing_draft %}
Heads up: You already have a draft in progress for this form. Confirming will replace that draft with the data from submission #{{ submission.id }}.
{% endif %}

Your previous answers will be pre-filled so you only need to correct what was wrong. File attachments are not carried over and must be re-uploaded. You can still edit any field before submitting.

{% csrf_token %}
Cancel
{% endblock %}