diff --git a/efile_app/efile/templates/efile/correct_filing.html b/efile_app/efile/templates/efile/correct_filing.html
new file mode 100644
index 00000000..1108a610
--- /dev/null
+++ b/efile_app/efile/templates/efile/correct_filing.html
@@ -0,0 +1,19 @@
+{% extends "efile/site_base.html" %}
+{% block title %}Correct and resubmit{% endblock title %}
+{% block public_content %}
+
Correct and resubmit
+ {% if error %}
+
{{ error }}
+ {% else %}
+
The court returned this filing. Select the details the clerk asked you to correct. Your other answers and documents will stay in the same matter.
+ {% for comment in detail.comments %}
{{ comment.text }}
{% endfor %}
+
+ {% endif %}
+{% endblock public_content %}
diff --git a/efile_app/efile/templates/efile/filing_detail.html b/efile_app/efile/templates/efile/filing_detail.html
index 0f24242a..93b53cb3 100644
--- a/efile_app/efile/templates/efile/filing_detail.html
+++ b/efile_app/efile/templates/efile/filing_detail.html
@@ -68,6 +68,9 @@
{% endif %}
+ {% if local_draft and filing.status_presentation.tone == 'rejected' %}
+
{% translate "Correct and resubmit" %}
+ {% endif %}
{% for comment in filing.comments %}
{{ comment.heading }}
diff --git a/efile_app/efile/templates/efile/handoff_claim.html b/efile_app/efile/templates/efile/handoff_claim.html new file mode 100644 index 00000000..9cdf7623 --- /dev/null +++ b/efile_app/efile/templates/efile/handoff_claim.html @@ -0,0 +1,15 @@ +{% extends "efile/site_base.html" %} +{% block title %}Continue your filing{% endblock title %} +{% block public_content %} + {% if expired %} +This filing link has expired
+Return to your interview and choose “Continue in LITEFile” again.
+ {% elif unavailable %} +This draft belongs to another account
+Sign in with the account you used to claim the draft.
+ {% else %} +Continue your filing
+{{ source }} sent your answers and documents to LITEFile. Add this draft to your signed-in account to check the filing details and send it to court.
+ + {% endif %} +{% endblock public_content %} diff --git a/efile_app/efile/templates/efile/handoff_review.html b/efile_app/efile/templates/efile/handoff_review.html new file mode 100644 index 00000000..a1bb4716 --- /dev/null +++ b/efile_app/efile/templates/efile/handoff_review.html @@ -0,0 +1,30 @@ +{% extends "efile/site_base.html" %} +{% block title %}Continue your filing{% endblock title %} +{% block public_content %} +{{ draft.case_title|default:"Continue your filing" }}
+ {% if closed %} +This filing is {{ draft.get_status_display|lower }}.
+ {% if draft.status == 'submitted' %}Check for a clerk return and correct this filing{% endif %} + {% else %} + {% if draft.correction_of_id %}You are correcting the same matter. Your previous submission and documents are preserved.
{% endif %} + {% for comment in draft.clerk_return.comments %}{{ comment.text }}
{% endfor %} +Your interview answers and documents are saved. Complete the missing details below. You can edit any answer that needs a correction.
+ +Details to complete
+{% for issue in issues %}- {{ issue.message }}
{% empty %}- Your draft is ready for the final filing checks.
{% endfor %}
+ +Saved case information
+{{ draft.court_name }} {{ draft.docket_number }} {{ draft.case_type_name }}
+ Edit case details +People
+{% for party in parties %}- {{ party }} — {{ party.party_role_hint }} {{ party.party_type_name }}
{% endfor %}
+ Edit people and party types +Documents
+{% for document in documents %}- {{ document.name }} — {{ document.filing_type_name }}
{% endfor %}
+ Edit documents and filing types + {% if can_return %} + + {% endif %} +Review and submit
+ {% endif %} +{% endblock public_content %} diff --git a/efile_app/efile/templates/efile/workflow_base.html b/efile_app/efile/templates/efile/workflow_base.html index aba6b6df..951ccd28 100644 --- a/efile_app/efile/templates/efile/workflow_base.html +++ b/efile_app/efile/templates/efile/workflow_base.html @@ -28,6 +28,9 @@{% translate "Return to saved interview answers and corrections" %}
+ {% endif %} {% block workflow_content %} {% endblock workflow_content %}