Skip to content

Commit

Permalink
fixing baseview again
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-pettinga committed Feb 6, 2024
1 parent c69d6a3 commit 9eef2fa
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions report_a_breach/core/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,12 @@ class ReportABreachWizardView(BaseWizardView):
]
template_name = "form_wizard_step.html"

def get_summary_template(self):
def get_summary_template_name(self):
return "summary.html"

def get_summary_context_data(self, form):
return self.get_all_cleaned_data()
context_dict = self.get_all_cleaned_data()
return context_dict

def process_email_step(self, form):
reporter_email_address = form.cleaned_data.get("reporter_email_address")
Expand Down

0 comments on commit 9eef2fa

Please sign in to comment.