diff --git a/edivorce/apps/core/templates/dashboard/check_with_registry.html b/edivorce/apps/core/templates/dashboard/check_with_registry.html index c0872bab..b43cf073 100644 --- a/edivorce/apps/core/templates/dashboard/check_with_registry.html +++ b/edivorce/apps/core/templates/dashboard/check_with_registry.html @@ -2,7 +2,7 @@ {% block title %}{{ block.super }}: Overview{% endblock %} -{% block progress %}{% include "dashnav.html" with active_page=active_page %}{% endblock %} +{% block progress %}{% include "partials/dashnav.html" with active_page=active_page %}{% endblock %} {% block content %} diff --git a/edivorce/apps/core/templates/dashboard/file_documents.html b/edivorce/apps/core/templates/dashboard/file_documents.html index 8a0ef16c..67d0708c 100644 --- a/edivorce/apps/core/templates/dashboard/file_documents.html +++ b/edivorce/apps/core/templates/dashboard/file_documents.html @@ -2,7 +2,7 @@ {% block title %}{{ block.super }}: Overview{% endblock %} -{% block progress %}{% include "dashnav.html" with active_page=active_page %}{% endblock %} +{% block progress %}{% include "partials/dashnav.html" with active_page=active_page %}{% endblock %} {% block content %} diff --git a/edivorce/apps/core/templates/dashboard/order_certificate.html b/edivorce/apps/core/templates/dashboard/order_certificate.html index 2fae3955..4aed6398 100644 --- a/edivorce/apps/core/templates/dashboard/order_certificate.html +++ b/edivorce/apps/core/templates/dashboard/order_certificate.html @@ -2,7 +2,7 @@ {% block title %}{{ block.super }}: Overview{% endblock %} -{% block progress %}{% include "dashnav.html" with active_page=active_page %}{% endblock %} +{% block progress %}{% include "partials/dashnav.html" with active_page=active_page %}{% endblock %} {% block content %}

Order a Certificate of Divorce (Optional)

diff --git a/edivorce/apps/core/templates/dashboard/print_form.html b/edivorce/apps/core/templates/dashboard/print_form.html index 2f8a950d..21fc0c08 100644 --- a/edivorce/apps/core/templates/dashboard/print_form.html +++ b/edivorce/apps/core/templates/dashboard/print_form.html @@ -2,7 +2,7 @@ {% block title %}{{ block.super }}: Overview{% endblock %} -{% block progress %}{% include "dashnav.html" with active_page=active_page %}{% endblock %} +{% block progress %}{% include "partials/dashnav.html" with active_page=active_page %}{% endblock %} {% block content %}

Review and Print your Divorce Forms

diff --git a/edivorce/apps/core/templates/dashboard/wait.html b/edivorce/apps/core/templates/dashboard/wait.html index c7626072..2e4b1530 100644 --- a/edivorce/apps/core/templates/dashboard/wait.html +++ b/edivorce/apps/core/templates/dashboard/wait.html @@ -2,7 +2,7 @@ {% block title %}{{ block.super }}: Overview{% endblock %} -{% block progress %}{% include "dashnav.html" with active_page=active_page %}{% endblock %} +{% block progress %}{% include "partials/dashnav.html" with active_page=active_page %}{% endblock %} {% block content %}

Wait while Judge reviews your request

diff --git a/edivorce/apps/core/templates/overview.html b/edivorce/apps/core/templates/overview.html index c9ce7afe..6ec87876 100644 --- a/edivorce/apps/core/templates/overview.html +++ b/edivorce/apps/core/templates/overview.html @@ -4,7 +4,7 @@ {% block title %}{{ block.super }}: Overview{% endblock %} -{% block progress %}{% include "dashnav.html" with active_page=active_page %}{% endblock %} +{% block progress %}{% include "partials/dashnav.html" with active_page=active_page %}{% endblock %} {% block content %} diff --git a/edivorce/apps/core/templates/dashnav.html b/edivorce/apps/core/templates/partials/dashnav.html similarity index 100% rename from edivorce/apps/core/templates/dashnav.html rename to edivorce/apps/core/templates/partials/dashnav.html diff --git a/edivorce/apps/core/templates/progress.html b/edivorce/apps/core/templates/partials/progress.html similarity index 96% rename from edivorce/apps/core/templates/progress.html rename to edivorce/apps/core/templates/partials/progress.html index 29f69097..d54a6beb 100644 --- a/edivorce/apps/core/templates/progress.html +++ b/edivorce/apps/core/templates/partials/progress.html @@ -6,7 +6,8 @@ Qualifying Questions - + {% if step_status.prequalification == 'Started' %} + {% elif step_status.prequalification == 'Complete' %} {% endif %} diff --git a/edivorce/apps/core/templates/prequalification/step_01.html b/edivorce/apps/core/templates/prequalification/step_01.html index 691d1598..42185715 100644 --- a/edivorce/apps/core/templates/prequalification/step_01.html +++ b/edivorce/apps/core/templates/prequalification/step_01.html @@ -5,7 +5,7 @@ {% block progress %} {% if request.bceid_user.is_authenticated %} - {% include "progress.html" %} + {% include "partials/progress.html" %} {% endif %} {% endblock %} diff --git a/edivorce/apps/core/templates/prequalification/step_02.html b/edivorce/apps/core/templates/prequalification/step_02.html index 644bd0ab..6e7dc2ec 100644 --- a/edivorce/apps/core/templates/prequalification/step_02.html +++ b/edivorce/apps/core/templates/prequalification/step_02.html @@ -5,7 +5,7 @@ {% block progress %} {% if request.bceid_user.is_authenticated %} - {% include "progress.html" %} + {% include "partials/progress.html" %} {% endif %} {% endblock %} diff --git a/edivorce/apps/core/templates/prequalification/step_03.html b/edivorce/apps/core/templates/prequalification/step_03.html index 62487d2e..e4440f4b 100644 --- a/edivorce/apps/core/templates/prequalification/step_03.html +++ b/edivorce/apps/core/templates/prequalification/step_03.html @@ -5,7 +5,7 @@ {% block progress %} {% if request.bceid_user.is_authenticated %} - {% include "progress.html" %} + {% include "partials/progress.html" %} {% endif %} {% endblock %} diff --git a/edivorce/apps/core/templates/prequalification/step_04.html b/edivorce/apps/core/templates/prequalification/step_04.html index 2bc284e0..95a9bf6a 100644 --- a/edivorce/apps/core/templates/prequalification/step_04.html +++ b/edivorce/apps/core/templates/prequalification/step_04.html @@ -5,7 +5,7 @@ {% block progress %} {% if request.bceid_user.is_authenticated %} - {% include "progress.html" %} + {% include "partials/progress.html" %} {% endif %} {% endblock %} {% block content %} diff --git a/edivorce/apps/core/templates/prequalification/step_05.html b/edivorce/apps/core/templates/prequalification/step_05.html index 8b2ed534..fdaaa1f9 100644 --- a/edivorce/apps/core/templates/prequalification/step_05.html +++ b/edivorce/apps/core/templates/prequalification/step_05.html @@ -6,7 +6,7 @@ {% block progress %} {% if request.bceid_user.is_authenticated %} - {% include "progress.html" %} + {% include "partials/progress.html" %} {% endif %} {% endblock %} diff --git a/edivorce/apps/core/templates/prequalification/step_06.html b/edivorce/apps/core/templates/prequalification/step_06.html index 8df5c648..9267d8e6 100644 --- a/edivorce/apps/core/templates/prequalification/step_06.html +++ b/edivorce/apps/core/templates/prequalification/step_06.html @@ -5,7 +5,7 @@ {% block progress %} {% if request.bceid_user.is_authenticated %} - {% include "progress.html" %} + {% include "partials/progress.html" %} {% endif %} {% endblock %} {% block content %} diff --git a/edivorce/apps/core/templates/question/01_orders.html b/edivorce/apps/core/templates/question/01_orders.html index a822bb74..b30aaf07 100644 --- a/edivorce/apps/core/templates/question/01_orders.html +++ b/edivorce/apps/core/templates/question/01_orders.html @@ -1,4 +1,4 @@ -{% extends 'base.html' %} {% load input_field %} {% load step_order %} {% block title %}{{ block.super }}: Prequalification{% endblock %} {% block progress %}{% include "progress.html" %}{% endblock %} {% block content %} +{% extends 'base.html' %} {% load input_field %} {% load step_order %} {% block title %}{{ block.super }}: Prequalification{% endblock %} {% block progress %}{% include "partials/progress.html" %}{% endblock %} {% block content %}

Step 1:What are you asking for Step {% step_order step="review" %}:Review

diff --git a/edivorce/apps/core/templates/question/12_uncategorized.html b/edivorce/apps/core/templates/question/12_uncategorized.html index fcb76f7b..84315a4e 100644 --- a/edivorce/apps/core/templates/question/12_uncategorized.html +++ b/edivorce/apps/core/templates/question/12_uncategorized.html @@ -2,7 +2,7 @@ {% block title %}{{ block.super }}: Review{% endblock %} -{% block progress %}{% include "progress.html" %}{% endblock %} +{% block progress %}{% include "partials/progress.html" %}{% endblock %} {% block content %}