def setUp(self):
     self.run_july_third_test = True
     self.factory = RequestFactory()
     domain = Domain.get_or_create_with_name('icds-test')
     domain.is_active = True
     domain.save()
     user = WebUser.all().first()
     if not user:
         user = WebUser.create('icds-test', 'test', 'passwordtest')
     user.is_authenticated = True
     user.is_superuser = True
     user.is_authenticated = True
     user.is_active = True
     self.user = user
     self.view = PrevalenceOfStuntingView.as_view()
     self.url = 'prevalence_of_stunting'
Exemplo n.º 2
0
     IcdsDynamicTemplateView.as_view(),
     name='icds-ng-template'),
 url(r'^program_summary/(?P<step>[\w-]+)/',
     ProgramSummaryView.as_view(),
     name='program_summary'),
 url(r'^awc_reports/(?P<step>[\w-]+)/',
     AwcReportsView.as_view(),
     name='awc_reports'),
 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-]+)/',
     PrevalenceOfStuntingView.as_view(),
     name='prevalence_of_stunting'),
 url(r'^low_birth/(?P<step>[\w-]+)/',
     NewbornsWithLowBirthWeightView.as_view(),
     name='low_birth'),
 url(r'^early_initiation/(?P<step>[\w-]+)/',
     EarlyInitiationBreastfeeding.as_view(),
     name='early_initiation'),
 url(r'^locations$', LocationView.as_view(), name='icds_locations'),
 url(r'^locations/ancestors$',
     LocationAncestorsView.as_view(),
     name='icds_locations_ancestors'),
 url(r'^export_indicator$',
     ExportIndicatorView.as_view(),
     name='icds_export_indicator'),
 url(r'^fact_sheets$', FactSheetsView.as_view(), name='fact_sheets'),
 def setUp(self):
     self.run_july_third_test = True
     self.factory = RequestFactory()
     self._setup_domain_and_user()
     self.view = PrevalenceOfStuntingView.as_view()
     self.url = 'prevalence_of_stunting'
Exemplo n.º 4
0
    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-]+)/',
        PrevalenceOfStuntingView.as_view(),
        name='prevalence_of_stunting'),
    url(
        r'^low_birth/(?P<step>[\w-]+)/',
        NewbornsWithLowBirthWeightView.as_view(),
        name='low_birth'),
    url(
        r'^early_initiation/(?P<step>[\w-]+)/',
        EarlyInitiationBreastfeeding.as_view(),
        name='early_initiation'),
    url(
        r'^exclusive-breastfeeding/(?P<step>[\w-]+)/',
        ExclusiveBreastfeedingView.as_view(),
        name='exclusive-breastfeeding'),
    url(
        r'^children_initiated/(?P<step>[\w-]+)/',