Browse Source

Fixed DIV-246

pull/160/head
Charles Shin 8 years ago
parent
commit
1520567b0b
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      edivorce/apps/core/views/main.py

+ 2
- 2
edivorce/apps/core/views/main.py View File

@ -115,13 +115,13 @@ def question(request, step):
user = __get_bceid_user(request) user = __get_bceid_user(request)
responses_dict_by_step = get_responses_from_db_grouped_by_steps(user) responses_dict_by_step = get_responses_from_db_grouped_by_steps(user)
if step == "11_review":
if step == "review":
responses_dict = responses_dict_by_step responses_dict = responses_dict_by_step
else: else:
responses_dict = get_responses_from_db(user) responses_dict = get_responses_from_db(user)
responses_dict['active_page'] = step responses_dict['active_page'] = step
# If page is filing location page, add registries dictionary for list of court registries # If page is filing location page, add registries dictionary for list of court registries
if step == "10_location":
if step == "location":
responses_dict['registries'] = sorted(list_of_registries) responses_dict['registries'] = sorted(list_of_registries)
# Add step status dictionary # Add step status dictionary


Loading…
Cancel
Save