|
|
|
@ -11,19 +11,19 @@ urlpatterns = [ |
|
|
|
|
|
|
|
# url(r'^login/headers$', system.headers), |
|
|
|
|
|
|
|
url(r'^login', main.login, name="login"), |
|
|
|
url(r'^bceid', localdev.bceid, name="bceid"), |
|
|
|
url(r'^login$', main.login, name="login"), |
|
|
|
url(r'^bceid$', localdev.bceid, name="bceid"), |
|
|
|
url(r'^register$', main.register, name="register"), |
|
|
|
url(r'^logout', main.logout, name="logout"), |
|
|
|
url(r'^overview', main.overview, name="overview"), |
|
|
|
url(r'^success', main.success, name="success"), |
|
|
|
url(r'^incomplete', main.incomplete, name="incomplete"), |
|
|
|
url(r'^intercept', main.intercept_page, name="intercept"), |
|
|
|
url(r'^logout$', main.logout, name="logout"), |
|
|
|
url(r'^overview$', main.overview, name="overview"), |
|
|
|
url(r'^success$', main.success, name="success"), |
|
|
|
url(r'^incomplete$', main.incomplete, name="incomplete"), |
|
|
|
url(r'^intercept$', main.intercept_page, name="intercept"), |
|
|
|
url(r'^dashboard/(?P<nav_step>.*)', main.dashboard_nav, name="dashboard_nav"), |
|
|
|
url(r'^health$', system.health), |
|
|
|
url(r'^legal', main.legal, name="legal"), |
|
|
|
url(r'^acknowledgements', main.acknowledgements, name="acknowledgements"), |
|
|
|
url(r'^contact', main.contact, name="contact"), |
|
|
|
url(r'^legal$', main.legal, name="legal"), |
|
|
|
url(r'^acknowledgements$', main.acknowledgements, name="acknowledgements"), |
|
|
|
url(r'^contact$', main.contact, name="contact"), |
|
|
|
|
|
|
|
# url(r'^headers$', system.headers), |
|
|
|
|
|
|
|
@ -31,6 +31,6 @@ urlpatterns = [ |
|
|
|
url(r'^prequalification/step_(?P<step>[0-9]{2})$', main.prequalification, name="prequalification"), |
|
|
|
url(r'^question/(?P<step>.*)/(?P<sub_step>.*)/$', main.question, name="question_steps"), |
|
|
|
url(r'^question/(?P<step>.*)$', main.question, name="question_steps"), |
|
|
|
url(r'^current', system.current, name="current"), |
|
|
|
url(r'^current$', system.current, name="current"), |
|
|
|
url(r'^$', main.home, name="home"), |
|
|
|
] |