Skip to content

Commit 02f05ed

Browse files
committed
show status bar on Confirm Identity page
1 parent b6c005a commit 02f05ed

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

manage_breast_screening/mammograms/views/appointment_views.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,14 @@ class ConfirmIdentity(InProgressAppointmentMixin, TemplateView):
124124
def get_context_data(self, pk, **kwargs):
125125
participant = self.appointment.participant
126126

127+
appointment_presenter = AppointmentPresenter(
128+
self.appointment, tab_description="Appointment details"
129+
)
127130
return {
128131
"heading": "Confirm identity",
129132
"page_title": "Confirm identity",
130133
"presented_participant": ParticipantPresenter(participant),
134+
"presented_appointment": appointment_presenter,
131135
"appointment_cannot_proceed_href": reverse(
132136
"mammograms:appointment_cannot_go_ahead", kwargs={"pk": pk}
133137
),

0 commit comments

Comments
 (0)