diff --git a/edivorce/apps/core/templates/partials/progress.html b/edivorce/apps/core/templates/partials/progress.html index d54a6beb..eaac90fa 100644 --- a/edivorce/apps/core/templates/partials/progress.html +++ b/edivorce/apps/core/templates/partials/progress.html @@ -17,13 +17,13 @@ - Step 2
Your information
+ Step 2
Your information (Claimant 1)
{% if step_status.your_information == 'Started' %} {% elif step_status.your_information == 'Complete' %} {% endif %}
- Step 3
Your spouse
+ Step 3
Your spouse (Claimant 2)
{% if step_status.your_spouse == 'Started' %} {% elif step_status.your_spouse == 'Complete' %} {% endif %}
diff --git a/edivorce/apps/core/templates/question/02_claimant.html b/edivorce/apps/core/templates/question/02_claimant.html index 60b2894c..7c940409 100644 --- a/edivorce/apps/core/templates/question/02_claimant.html +++ b/edivorce/apps/core/templates/question/02_claimant.html @@ -8,7 +8,7 @@ {% block content %} -

Step 2:Your Information

+

Step 2:Your Information (Claimant 1)

Please enter your name (as it appears on your marriage certificate or registration of marriage)

diff --git a/edivorce/apps/core/templates/question/03_respondent.html b/edivorce/apps/core/templates/question/03_respondent.html index 7185f5fa..a989c111 100644 --- a/edivorce/apps/core/templates/question/03_respondent.html +++ b/edivorce/apps/core/templates/question/03_respondent.html @@ -9,7 +9,8 @@ {% block content %} -

Step 3:Your Spouse

+

Step 3:Your Spouse (Claimant 2)

+

Your Spouse's Information

diff --git a/edivorce/urls.py b/edivorce/urls.py index 4bdb2b09..c805c78c 100644 --- a/edivorce/urls.py +++ b/edivorce/urls.py @@ -1,7 +1,10 @@ +from django.conf import settings from django.conf.urls import include, url from django.contrib import admin -urlpatterns = [ - url(r'^admin/', admin.site.urls), - url(r'^', include('edivorce.apps.core.urls')), -] +urlpatterns = [] + +if settings.DEPLOYMENT_TYPE == 'localdev': + urlpatterns.append(url(r'^admin/', admin.site.urls)) + +urlpatterns.append(url(r'^', include('edivorce.apps.core.urls')))