LactatingEnrolledWomenView, AdolescentGirlsView, AdhaarBeneficiariesView, CleanWaterView, FunctionalToiletView, MedicineKitView, InfantsWeightScaleView, AdultWeightScaleView, AggregationScriptPage, AWCLocationView, DownloadPDFReport, CheckExportReportStatus, ICDSImagesAccessorAPI, HaveAccessToLocation, InactiveAWW, DownloadExportReport, DishaAPIView, NICIndicatorAPIView, LadySupervisorView, CasDataExport, CasDataExportAPIView, ServiceDeliveryDashboardView, InactiveDashboardUsers, APWebservice, DailyIndicators, InfantometerView, StadiometerView, MWCDDataView, IcdsDynamicMobileTemplateView, GovernanceHomeVisitAPI, GovernanceBeneficiaryAPI, GovernanceStateListAPI, GovernanceVHNDSAPI, MobileDashboardDownloadView, GovernanceCBEAPI, BiharDemographicsAPI, BiharMotherDetailsAPI, BiharVaccinesAPI, BiharSchoolAPI, ServiceDeliveryDashboardDetailsView, PoshanProgressDashboardView, LSsLaunchedView ) dashboard_urls = [ url('^mobile_app/$', MobileDashboardDownloadView.as_view(), name='icds_mobile_dashboard_download'), url(r'^icds_image_accessor/(?P<form_id>[\w\-:]+)/(?P<attachment_id>.*)$', ICDSImagesAccessorAPI.as_view(), name='icds_image_accessor'), url('^', DashboardView.as_view(), name='icds_dashboard'), ] maternal_and_child_urls = [ url( r'^underweight_children/(?P<step>[\w-]+)/', PrevalenceOfUndernutritionView.as_view(), name='underweight_children'), url( r'^prevalence_of_severe/(?P<step>[\w-]+)/', PrevalenceOfSevereView.as_view(), name='prevalence_of_severe'), url( r'^prevalence_of_stunting/(?P<step>[\w-]+)/',
from django.conf.urls import url, include from custom.icds_reports.views import TableauView, DashboardView, IcdsDynamicTemplateView, ProgramSummaryView, \ PrevalenceOfUndernutritionView, LocationView, LocationAncestorsView, AwcReportsView, \ ExportIndicatorView, FactSheetsView, PrevalenceOfSevereView, PrevalenceOfStuntingView, \ ExclusiveBreastfeedingView, NewbornsWithLowBirthWeightView, EarlyInitiationBreastfeeding, \ ChildrenInitiatedView, InstitutionalDeliveriesView, ImmunizationCoverageView, AWCDailyStatusView, \ AWCsCoveredView, RegisteredHouseholdView, EnrolledChildrenView, EnrolledWomenView, \ LactatingEnrolledWomenView, AdolescentGirlsView, AdhaarBeneficiariesView, CleanWaterView, \ FunctionalToiletView, MedicineKitView, InfantsWeightScaleView, AdultWeightScaleView, AggregationScriptPage, \ ICDSBugReportView, AWCLocationView, DownloadPDFReport, CheckExportReportStatus, ICDSImagesAccessorAPI, \ HaveAccessToLocation, AppTranslations, InactiveAWW, DownloadExportReport dashboardurls = [ url(r'^icds_image_accessor/(?P<form_id>[\w\-:]+)/(?P<attachment_id>.*)$', ICDSImagesAccessorAPI.as_view(), name='icds_image_accessor'), url('^', DashboardView.as_view(), name='icds_dashboard') ] urlpatterns = [ url(r'^tableau/(?P<workbook>\w+)/(?P<worksheet>\w+)$', TableauView.as_view(), name='icds_tableau'), url(r'^icds_dashboard/', include(dashboardurls)), url(r'^icds-ng-template/(?P<template>[\w-].+)', IcdsDynamicTemplateView.as_view(), name='icds-ng-template'), url(r'^program_summary/(?P<step>[\w-]+)/', ProgramSummaryView.as_view(), name='program_summary'),
from custom.icds_reports.views import TableauView, DashboardView, IcdsDynamicTemplateView, ProgramSummaryView, \ PrevalenceOfUndernutritionView, LocationView, LocationAncestorsView, AwcReportsView, \ ExportIndicatorView, FactSheetsView, PrevalenceOfSevereView, PrevalenceOfStuntingView, \ ExclusiveBreastfeedingView, NewbornsWithLowBirthWeightView, EarlyInitiationBreastfeeding, \ ChildrenInitiatedView, InstitutionalDeliveriesView, ImmunizationCoverageView, AWCDailyStatusView, \ AWCsCoveredView, RegisteredHouseholdView, EnrolledChildrenView, EnrolledWomenView, \ LactatingEnrolledWomenView, AdolescentGirlsView, AdhaarBeneficiariesView, CleanWaterView, \ FunctionalToiletView, MedicineKitView, InfantsWeightScaleView, AdultWeightScaleView, AggregationScriptPage, \ ICDSBugReportView, AWCLocationView, DownloadPDFReport, CheckExportReportStatus, ICDSImagesAccessorAPI, \ HaveAccessToLocation, InactiveAWW, DownloadExportReport, DishaAPIView, LadySupervisorView, CasDataExport, \ CasDataExportAPIView, ServiceDeliveryDashboardView, InactiveDashboardUsers dashboardurls = [ url(r'^icds_image_accessor/(?P<form_id>[\w\-:]+)/(?P<attachment_id>.*)$', ICDSImagesAccessorAPI.as_view(), name='icds_image_accessor'), url(r'^data_export', CasDataExportAPIView.as_view(), name='data_export_api'), url('^', DashboardView.as_view(), name='icds_dashboard'), ] maternal_and_child_urls = [ url( r'^underweight_children/(?P<step>[\w-]+)/', PrevalenceOfUndernutritionView.as_view(), name='underweight_children'), url( r'^prevalence_of_severe/(?P<step>[\w-]+)/', PrevalenceOfSevereView.as_view(), name='prevalence_of_severe'), url( r'^prevalence_of_stunting/(?P<step>[\w-]+)/',