|
19 | 19 |
|
20 | 20 | from .views.age_range_exit import AgeRangeExitView |
21 | 21 | from .views.asbestos_exposure import AsbestosExposureView |
22 | | -from .views.bmi_exit import BmiExitView |
| 22 | +from .views.book_an_appointment import BookAnAppointmentExitView |
23 | 23 | from .views.cancer_diagnosis import CancerDiagnosisView |
24 | 24 | from .views.check_need_appointment import CheckNeedAppointmentView |
25 | 25 | from .views.date_of_birth import DateOfBirthView |
|
40 | 40 |
|
41 | 41 | urlpatterns = [ |
42 | 42 | path('', RedirectView.as_view(url='/start'), name='root'), |
43 | | - path('start', StartView.as_view(), name='start'), |
44 | | - path('have-you-ever-smoked', HaveYouEverSmokedView.as_view(), name='have_you_ever_smoked'), |
45 | | - path('date-of-birth', DateOfBirthView.as_view(), name='date_of_birth'), |
46 | | - path('check-if-you-need-an-appointment', CheckNeedAppointmentView.as_view(), name='check_need_appointment'), |
47 | | - path('height', HeightView.as_view(), name='height'), |
48 | | - path('weight', WeightView.as_view(), name='weight'), |
49 | | - path('sex-at-birth', SexAtBirthView.as_view(), name='sex_at_birth'), |
50 | | - path('gender', GenderView.as_view(), name='gender'), |
51 | | - path('ethnicity', EthnicityView.as_view(), name='ethnicity'), |
52 | | - path('education', EducationView.as_view(), name='education'), |
53 | | - path('respiratory-conditions', RespiratoryConditionsView.as_view(), name='respiratory_conditions'), |
| 43 | + path('age-range-exit', AgeRangeExitView.as_view(), name='age_range_exit'), |
54 | 44 | path('asbestos-exposure', AsbestosExposureView.as_view(), name='asbestos_exposure'), |
| 45 | + path('call-us-to-book-an-appointment', BookAnAppointmentExitView.as_view(), name='book_an_appointment'), |
55 | 46 | path('cancer-diagnosis', CancerDiagnosisView.as_view(), name='cancer_diagnosis'), |
| 47 | + path('check-if-you-need-an-appointment', CheckNeedAppointmentView.as_view(), name='check_need_appointment'), |
| 48 | + path('date-of-birth', DateOfBirthView.as_view(), name='date_of_birth'), |
| 49 | + path('education', EducationView.as_view(), name='education'), |
| 50 | + path('ethnicity', EthnicityView.as_view(), name='ethnicity'), |
56 | 51 | path('family-history-lung-cancer', FamilyHistoryLungCancerView.as_view(), name='family_history_lung_cancer'), |
| 52 | + path('gender', GenderView.as_view(), name='gender'), |
| 53 | + path('have-you-ever-smoked', HaveYouEverSmokedView.as_view(), name='have_you_ever_smoked'), |
| 54 | + path('height', HeightView.as_view(), name='height'), |
| 55 | + path('non-smoker-exit', NonSmokerExitView.as_view(), name='non_smoker_exit'), |
57 | 56 | path('relatives-age-when-diagnosed', RelativesAgeWhenDiagnosedView.as_view(), name='relatives_age_when_diagnosed'), |
| 57 | + path('respiratory-conditions', RespiratoryConditionsView.as_view(), name='respiratory_conditions'), |
58 | 58 | path('responses', ResponsesView.as_view(), name='responses'), |
59 | | - path('age-range-exit', AgeRangeExitView.as_view(), name='age_range_exit'), |
60 | | - path('bmi-exit', BmiExitView.as_view(), name='bmi_exit'), |
61 | | - path('non-smoker-exit', NonSmokerExitView.as_view(), name='non_smoker_exit'), |
| 59 | + path('sex-at-birth', SexAtBirthView.as_view(), name='sex_at_birth'), |
| 60 | + path('start', StartView.as_view(), name='start'), |
| 61 | + path('weight', WeightView.as_view(), name='weight'), |
62 | 62 | path('your-results', YourResultsView.as_view(), name='your_results'), |
63 | 63 | ] |
0 commit comments