Step {% step_order step="location" %}: Filing location
- {% if step_status.filing_locations != 'Complete' %}{% include 'partials/incomplete.html' %}{% endif %}
+ {% if step_status.filing_locations != 'Completed' %}{% include 'partials/incomplete.html' %}{% endif %}
Edit
diff --git a/edivorce/apps/core/utils/step_completeness.py b/edivorce/apps/core/utils/step_completeness.py
index e8d3e5a8..f8fdbe1c 100644
--- a/edivorce/apps/core/utils/step_completeness.py
+++ b/edivorce/apps/core/utils/step_completeness.py
@@ -51,7 +51,7 @@ def get_step_completeness(questions_by_step):
has_responses = True
complete = is_complete(questions_dict)
if complete:
- status_dict[step] = "Complete"
+ status_dict[step] = "Completed"
else:
status_dict[step] = "Started"
return status_dict