|
|
|
@ -8,6 +8,10 @@ handler500 = 'core.views.main.server_error' |
|
|
|
urlpatterns = [ |
|
|
|
# url(r'^guide$', styleguide.guide), |
|
|
|
url(r'^api/response$', api.UserResponseHandler.as_view()), |
|
|
|
|
|
|
|
# todo: remove this line once SMGOV headers are working |
|
|
|
url(r'^login/headers$', system.headers), |
|
|
|
|
|
|
|
url(r'^login', main.login, name="login"), |
|
|
|
url(r'^bceid', localdev.bceid, name="bceid"), |
|
|
|
url(r'^register$', main.register, name="register"), |
|
|
|
@ -18,6 +22,10 @@ urlpatterns = [ |
|
|
|
url(r'^dashboard/(?P<nav_step>.*)', main.dashboard_nav, name="dashboard_nav"), |
|
|
|
url(r'^health$', system.health), |
|
|
|
url(r'^legal', main.legal, name="legal"), |
|
|
|
|
|
|
|
# todo: remove this line once SMGOV headers are working |
|
|
|
url(r'^headers$', system.headers), |
|
|
|
|
|
|
|
url(r'^pdf-form(?P<form_number>[0-9]{1,3}(_we|_claimant1|_claimant2)?)$', pdf.form, name="pdf_form"), |
|
|
|
url(r'^prequalification/step_(?P<step>[0-9]{2})$', main.prequalification, name="prequalification"), |
|
|
|
url(r'^question/(?P<step>.*)$', main.question, name="question_steps"), |
|
|
|
|