Browse Source

Handle filing_submitted=="False"

pull/172/head
ariannedee 5 years ago
parent
commit
df76b91172
4 changed files with 9 additions and 9 deletions
  1. +3
    -3
      edivorce/apps/core/templates/dashboard/final_filing.html
  2. +3
    -3
      edivorce/apps/core/templates/dashboard/initial_filing.html
  3. +2
    -2
      edivorce/apps/core/templates/dashboard/next_steps.html
  4. +1
    -1
      edivorce/apps/core/templates/dashboard/wait_for_number.html

+ 3
- 3
edivorce/apps/core/templates/dashboard/final_filing.html View File

@ -10,7 +10,7 @@
{% block content %}
<h1>Final Filing</h1>
{% if final_filing_submitted %}
{% if final_filing_submitted == 'True' %}
<div>
<p>
You have already completed this step.
@ -262,7 +262,7 @@
hello
{% endif %}
{% endif %}
{% if not final_filing_submitted and how_to_file == 'Online' %}
{% if final_filing_submitted != 'True' and how_to_file == 'Online' %}
<h3>Filing with Court Services Online</h3>
<p>When you click Submit Documents, you will be taken to the Court Services Online e-filing hub.
In the next few steps you will be able to do a final review of your filed documentation,
@ -279,7 +279,7 @@
{% block formbuttons %}
<div class="form-buttons clearfix">
<a class="btn btn-primary" href="{% url 'dashboard_nav' 'swear_forms' %}"><i class="fa fa-arrow-circle-o-left"></i>&nbsp;&nbsp;&nbsp;Back</a>
{% if how_to_file == 'Online' and not final_filing_submitted %}
{% if how_to_file == 'Online' and final_filing_submitted != 'True'%}
<a class="btn btn-success pull-right save-spinner" href="{% url 'submit_final_files' %}" id="submitDocuments">
<i class="fa fa-paper-plane"></i>&nbsp;&nbsp;&nbsp;
Submit Documents</a>


+ 3
- 3
edivorce/apps/core/templates/dashboard/initial_filing.html View File

@ -9,7 +9,7 @@
{% block content %}
<h1>Initial Filing</h1>
{% if initial_filing_submitted %}
{% if initial_filing_submitted == 'True' %}
<p>
You have already completed this step.
</p>
@ -94,7 +94,7 @@
<h3>Filing with Court Services Online</h3>
<p>
When you click Next, you will be taken to the Court Services Online e-filing hub.
When you click Submit Documents, you will be taken to the Court Services Online e-filing hub.
In the next few steps you will be able to do a final review of the documents you are submitting for filing,
pay for your filing and (if completed successfully) receive a Package Number.
</p>
@ -125,7 +125,7 @@
{% block formbuttons %}
<div class="form-buttons clearfix">
<a class="btn btn-primary" href="{% url 'dashboard_nav' 'print_form' %}"><i class="fa fa-arrow-circle-o-left"></i>&nbsp;&nbsp;&nbsp;Back</a>
{% if initial_filing_submitted %}
{% if initial_filing_submitted == 'True' %}
<a class="btn btn-success pull-right" href="{% url 'dashboard_nav' 'wait_for_number' %}">Next&nbsp;&nbsp;&nbsp;<i
class="fa fa-arrow-circle-o-right"></i></a>
{% elif how_to_file == 'Online' %}


+ 2
- 2
edivorce/apps/core/templates/dashboard/next_steps.html View File

@ -9,7 +9,7 @@
{% block content %}
<h1>Filing Completed</h1>
{% if how_to_file == 'Online' %}
{% if final_filing_submitted %}
{% if final_filing_submitted == 'True' %}
<p>
You have successfully completed filing online.
</p>
@ -31,7 +31,7 @@
This e-mail will include a {% include "partials/tooltips/court_file_number.html" %}, please keep this number for your records and use it
if filing any additional documents.
</p>
{% if final_filing_submitted %}
{% if final_filing_submitted == 'True' %}
<div class="question-well">
<h3>Filing Status</h3>
<p>


+ 1
- 1
edivorce/apps/core/templates/dashboard/wait_for_number.html View File

@ -7,7 +7,7 @@
{% block container_col %}dashboard-content{% endblock %}
{% block content %}
<h1>Wait for Court File Number</h1>
{% if initial_filing_submitted %}
{% if initial_filing_submitted == 'True' %}
<p>
You’ve successfully completed your initial filing with the Court Registry.
</p>


Loading…
Cancel
Save