Beispiel #1
0
     name=SubscriptionRenewalView.urlname),
 url(r'^subscription/renew/confirm/$', ConfirmSubscriptionRenewalView.as_view(),
     name=ConfirmSubscriptionRenewalView.urlname),
 url(r'^internal_subscription_management/$', InternalSubscriptionManagementView.as_view(),
     name=InternalSubscriptionManagementView.urlname),
 url(r'^billing_information/$', EditExistingBillingAccountView.as_view(),
     name=EditExistingBillingAccountView.urlname),
 url(r'^repeat_record/', RepeatRecordView.as_view(), name=RepeatRecordView.urlname),
 url(r'^repeat_record_report/cancel/', cancel_repeat_record, name='cancel_repeat_record'),
 url(r'^repeat_record_report/requeue/', requeue_repeat_record, name='requeue_repeat_record'),
 url(r'^forwarding/$', DomainForwardingOptionsView.as_view(), name=DomainForwardingOptionsView.urlname),
 url(r'^forwarding/new/FormRepeater/$', AddFormRepeaterView.as_view(), {'repeater_type': 'FormRepeater'},
     name=AddFormRepeaterView.urlname),
 url(r'^forwarding/new/CaseRepeater/$', AddCaseRepeaterView.as_view(), {'repeater_type': 'CaseRepeater'},
     name=AddCaseRepeaterView.urlname),
 url(r'^forwarding/new/(?P<repeater_type>\w+)/$', AddRepeaterView.as_view(), name=AddRepeaterView.urlname),
 url(r'^forwarding/test/$', test_repeater, name='test_repeater'),
 url(r'^forwarding/(?P<repeater_id>[\w-]+)/stop/$', drop_repeater, name='drop_repeater'),
 url(r'^snapshots/set_published/(?P<snapshot_name>[\w-]+)/$', set_published_snapshot, name='domain_set_published'),
 url(r'^snapshots/set_published/$', set_published_snapshot, name='domain_clear_published'),
 url(r'^snapshots/$', ExchangeSnapshotsView.as_view(), name=ExchangeSnapshotsView.urlname),
 url(r'^transfer/$', TransferDomainView.as_view(), name=TransferDomainView.urlname),
 url(r'^snapshots/new/$', CreateNewExchangeSnapshotView.as_view(), name=CreateNewExchangeSnapshotView.urlname),
 url(r'^multimedia/$', ManageProjectMediaView.as_view(), name=ManageProjectMediaView.urlname),
 url(r'^case_search/$', CaseSearchConfigView.as_view(), name=CaseSearchConfigView.urlname),
 url(r'^calendar_settings/$', CalendarFixtureConfigView.as_view(), name=CalendarFixtureConfigView.urlname),
 url(r'^location_settings/$', LocationFixtureConfigView.as_view(), name=LocationFixtureConfigView.urlname),
 url(r'^commtrack/settings/$', RedirectView.as_view(url='commtrack_settings', permanent=True)),
 url(r'^internal/info/$', EditInternalDomainInfoView.as_view(), name=EditInternalDomainInfoView.urlname),
 url(r'^internal/calculations/$', EditInternalCalculationsView.as_view(), name=EditInternalCalculationsView.urlname),
 url(r'^internal/calculated_properties/$', calculated_properties, name='calculated_properties'),
Beispiel #2
0
     name=BillingStatementPdfView.urlname
 ),
 url(r'^billing/statements/$', DomainBillingStatementsView.as_view(),
     name=DomainBillingStatementsView.urlname),
 url(r'^billing/make_payment/$', InvoiceStripePaymentView.as_view(),
     name=InvoiceStripePaymentView.urlname),
 url(r'^billing/join_billing_admins/$', AddOpsUserAsDomainAdminView.as_view(),
     name=AddOpsUserAsDomainAdminView.urlname),
 url(r'^subscription/$', DomainSubscriptionView.as_view(), name=DomainSubscriptionView.urlname),
 url(r'^subscription/renew/$', ConfirmSubscriptionRenewalView.as_view(),
     name=ConfirmSubscriptionRenewalView.urlname),
 url(r'^billing_information/$', EditExistingBillingAccountView.as_view(), name=EditExistingBillingAccountView.urlname),
 url(r'^deployment/$', EditDeploymentProjectInfoView.as_view(), name=EditDeploymentProjectInfoView.urlname),
 url(r'^forwarding/$', DomainForwardingOptionsView.as_view(), name=DomainForwardingOptionsView.urlname),
 url(r'^forwarding/new/FormRepeater/$', AddFormRepeaterView.as_view(), {'repeater_type':'FormRepeater'}, name=AddFormRepeaterView.urlname),
 url(r'^forwarding/new/(?P<repeater_type>\w+)/$', AddRepeaterView.as_view(), name=AddRepeaterView.urlname),
 url(r'^forwarding/test/$', 'test_repeater', name='test_repeater'),
 url(r'^forwarding/(?P<repeater_id>[\w-]+)/stop/$', 'drop_repeater', name='drop_repeater'),
 url(r'^snapshots/set_published/(?P<snapshot_name>[\w-]+)/$', 'set_published_snapshot', name='domain_set_published'),
 url(r'^snapshots/set_published/$', 'set_published_snapshot', name='domain_clear_published'),
 url(r'^snapshots/$', ExchangeSnapshotsView.as_view(), name=ExchangeSnapshotsView.urlname),
 url(r'^snapshots/new/$', CreateNewExchangeSnapshotView.as_view(), name=CreateNewExchangeSnapshotView.urlname),
 url(r'^multimedia/$', ManageProjectMediaView.as_view(), name=ManageProjectMediaView.urlname),
 url(r'^commtrack/settings/$', RedirectView.as_view(url='commtrack_settings')),
 url(r'^organization/$', OrgSettingsView.as_view(), name=OrgSettingsView.urlname),
 url(r'^organization/request/$', 'org_request', name='domain_org_request'),
 url(r'^internal/info/$', EditInternalDomainInfoView.as_view(), name=EditInternalDomainInfoView.urlname),
 url(r'^internal/calculations/$', EditInternalCalculationsView.as_view(), name=EditInternalCalculationsView.urlname),
 url(r'^internal/calculated_properties/$', 'calculated_properties', name='calculated_properties'),
 url(r'^previews/$', FeaturePreviewsView.as_view(), name=FeaturePreviewsView.urlname),
 url(r'^flags/$', FeatureFlagsView.as_view(), name=FeatureFlagsView.urlname),
Beispiel #3
0
     cancel_repeat_record,
     name='cancel_repeat_record'),
 url(r'^repeat_record_report/requeue/',
     requeue_repeat_record,
     name='requeue_repeat_record'),
 url(r'^forwarding/$',
     DomainForwardingOptionsView.as_view(),
     name=DomainForwardingOptionsView.urlname),
 url(r'^forwarding/new/FormRepeater/$',
     AddFormRepeaterView.as_view(), {'repeater_type': 'FormRepeater'},
     name=AddFormRepeaterView.urlname),
 url(r'^forwarding/new/CaseRepeater/$',
     AddCaseRepeaterView.as_view(), {'repeater_type': 'CaseRepeater'},
     name=AddCaseRepeaterView.urlname),
 url(r'^forwarding/new/(?P<repeater_type>\w+)/$',
     AddRepeaterView.as_view(),
     name=AddRepeaterView.urlname),
 url(r'^forwarding/test/$', test_repeater, name='test_repeater'),
 url(r'^forwarding/(?P<repeater_id>[\w-]+)/stop/$',
     drop_repeater,
     name='drop_repeater'),
 url(r'^dhis2/conn/$',
     Dhis2ConnectionView.as_view(),
     name=Dhis2ConnectionView.urlname),
 url(r'^dhis2/map/$', DataSetMapView.as_view(),
     name=DataSetMapView.urlname),
 url(r'^dhis2/logs/$',
     Dhis2LogListView.as_view(),
     name=Dhis2LogListView.urlname),
 url(r'^dhis2/logs/(?P<pk>\d+)/$',
     Dhis2LogDetailView.as_view(),
Beispiel #4
0
        {'repeater_type': 'LabBETSVoucherRepeater'},
        name=LabBETSVoucherRepeaterView.urlname),
    url(r'^new_bets_180_treatment_repeater$',
        BETS180TreatmentRepeaterView.as_view(),
        {'repeater_type': 'BETS180TreatmentRepeater'},
        name=BETS180TreatmentRepeaterView.urlname),
    url(r'^new_bets_drg_refill_repeater$',
        BETSDrugRefillRepeaterView.as_view(),
        {'repeater_type': 'BETSDrugRefillRepeater'},
        name=BETSDrugRefillRepeaterView.urlname),
    url(r'^new_bets_successful_treatment_repeater$',
        BETSSuccessfulTreatmentRepeaterView.as_view(),
        {'repeater_type': 'BETSSuccessfulTreatmentRepeater'},
        name=BETSSuccessfulTreatmentRepeaterView.urlname),
    url(r'^new_bets_diagnosis_and_notification_repeater$',
        BETSDiagnosisAndNotificationRepeaterView.as_view(),
        {'repeater_type': 'BETSDiagnosisAndNotificationRepeater'},
        name=BETSDiagnosisAndNotificationRepeaterView.urlname),
    url(r'^new_bets_ayush_referral_repeater$',
        BETSAYUSHReferralRepeaterView.as_view(),
        {'repeater_type': 'BETSAYUSHReferralRepeater'},
        name=BETSAYUSHReferralRepeaterView.urlname),
    url(r'^user_repeater$',
        AddRepeaterView.as_view(), {'repeater_type': 'BETSUserRepeater'},
        name='bets_user_repeater'),
    url(r'^location_repeater$',
        AddRepeaterView.as_view(), {'repeater_type': 'BETSLocationRepeater'},
        name='bets_location_repeater'),
    url(r'^', include(hq_api.urls)),
]