Esempio n. 1
0
    url(r'^login/$', mobile_views.login, name="cas_mobile_dashboard_login"),
    url(r'^logout/$', mobile_views.logout, name="cas_mobile_dashboard_logout"),
    url(r'^password_reset/$', mobile_views.password_reset, name="cas_mobile_dashboard_password_reset"),
    url(r'^password_reset/done$', mobile_views.password_reset_done,
        name="cas_mobile_dashboard_password_reset_done"),
    url(r'^$', mobile_views.MobileDashboardView.as_view(), name="cas_mobile_dashboard"),
]


urlpatterns = [
    url(r'^tableau/(?P<workbook>\w+)/(?P<worksheet>\w+)$', LegacyTableauRedirectView.as_view(),
        name='icds_tableau'),
    url(r'^icds_dashboard/', include(dashboard_urls)),
    url(r'^icds_dashboard_mobile/', include(mobile_dashboard_urls)),
    url(r'^icds-ng-template/(?P<template>[\w-].+)', IcdsDynamicTemplateView.as_view(), name='icds-ng-template'),
    url(r'^icds-ng-template-mobile/(?P<template>[\w-].+)', IcdsDynamicMobileTemplateView.as_view(),
        name='icds-ng-template-mobile'),
    url(r'^program_summary/(?P<step>[\w-]+)/', ProgramSummaryView.as_view(), name='program_summary'),
    url(r'^lady_supervisor/', LadySupervisorView.as_view(), name='lady_supervisor'),
    url(
        r'^service_delivery_dashboard/(?P<step>[\w-]+)/',
        ServiceDeliveryDashboardView.as_view(),
        name='service_delivery_dashboard'
    ),
    url(
        r'^poshan_progress_dashboard/(?P<step>[\w-]+)/',
        PoshanProgressDashboardView.as_view(),
        name='poshan_progress_dashboard'
    ),
    url(
        r'^service_delivery_dashboard_details/(?P<step>[\w-]+)/',
Esempio n. 2
0
    url(r'^$',
        mobile_views.MobileDashboardView.as_view(),
        name="cas_mobile_dashboard"),
]

urlpatterns = [
    url(r'^tableau/(?P<workbook>\w+)/(?P<worksheet>\w+)$',
        LegacyTableauRedirectView.as_view(),
        name='icds_tableau'),
    url(r'^icds_dashboard/', include(dashboard_urls)),
    url(r'^icds_dashboard_mobile/', include(mobile_dashboard_urls)),
    url(r'^icds-ng-template/(?P<template>[\w-].+)',
        IcdsDynamicTemplateView.as_view(),
        name='icds-ng-template'),
    url(r'^icds-ng-template-mobile/(?P<template>[\w-].+)',
        IcdsDynamicMobileTemplateView.as_view(),
        name='icds-ng-template-mobile'),
    url(r'^program_summary/(?P<step>[\w-]+)/',
        ProgramSummaryView.as_view(),
        name='program_summary'),
    url(r'^lady_supervisor/',
        LadySupervisorView.as_view(),
        name='lady_supervisor'),
    url(r'^service_delivery_dashboard/(?P<step>[\w-]+)/',
        ServiceDeliveryDashboardView.as_view(),
        name='service_delivery_dashboard'),
    url(r'^maternal_and_child/', include(maternal_and_child_urls)),
    url(r'^icds_cas_reach/', include(cas_reach_urls)),
    url(r'^demographics/', include(demographics_urls)),
    url(r'^awc_infrastructure/', include(awc_infrastructure_urls)),
    url(r'^awc_reports/(?P<step>[\w-]+)/',