Beispiel #1
0
     SelectPlanView.as_view(),
     name=SelectPlanView.urlname),
 url(r'^subscription/change/confirm/$',
     ConfirmSelectedPlanView.as_view(),
     name=ConfirmSelectedPlanView.urlname),
 url(r'^subscription/change/request/$',
     SelectedEnterprisePlanView.as_view(),
     name=SelectedEnterprisePlanView.urlname),
 url(r'^subscription/change/account/$',
     ConfirmBillingAccountInfoView.as_view(),
     name=ConfirmBillingAccountInfoView.urlname),
 url(r'^subscription/pro_bono/$',
     ProBonoView.as_view(),
     name=ProBonoView.urlname),
 url(r'^subscription/credits/make_payment/$',
     CreditsStripePaymentView.as_view(),
     name=CreditsStripePaymentView.urlname),
 url(r'^subscription/credis/make_wire_payment/$',
     CreditsWireInvoiceView.as_view(),
     name=CreditsWireInvoiceView.urlname),
 url(r'^billing/statements/download/(?P<statement_id>[\w-]+).pdf$',
     BillingStatementPdfView.as_view(),
     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/make_bulk_payment/$',
     BulkStripePaymentView.as_view(),
Beispiel #2
0
 url(r'^$', DefaultProjectSettingsView.as_view(), name=DefaultProjectSettingsView.urlname),
 url(r'^my_settings/$', EditMyProjectSettingsView.as_view(), name=EditMyProjectSettingsView.urlname),
 url(r'^basic/$', EditBasicProjectInfoView.as_view(), name=EditBasicProjectInfoView.urlname),
 url(r'^call_center_owner_options/', CallCenterOwnerOptionsView.as_view(),
     name=CallCenterOwnerOptionsView.url_name),
 url(r'^privacy/$', EditPrivacySecurityView.as_view(), name=EditPrivacySecurityView.urlname),
 url(r'^openclinica/$', EditOpenClinicaSettingsView.as_view(), name=EditOpenClinicaSettingsView.urlname),
 url(r'^subscription/change/$', SelectPlanView.as_view(), name=SelectPlanView.urlname),
 url(r'^subscription/change/confirm/$', ConfirmSelectedPlanView.as_view(),
     name=ConfirmSelectedPlanView.urlname),
 url(r'^subscription/change/request/$', SelectedEnterprisePlanView.as_view(),
     name=SelectedEnterprisePlanView.urlname),
 url(r'^subscription/change/account/$', ConfirmBillingAccountInfoView.as_view(),
     name=ConfirmBillingAccountInfoView.urlname),
 url(r'^subscription/pro_bono/$', ProBonoView.as_view(), name=ProBonoView.urlname),
 url(r'^subscription/credits/make_payment/$', CreditsStripePaymentView.as_view(),
     name=CreditsStripePaymentView.urlname),
 url(r'^subscription/credis/make_wire_payment/$', CreditsWireInvoiceView.as_view(),
     name=CreditsWireInvoiceView.urlname),
 url(r'^billing/statements/download/(?P<statement_id>[\w-]+).pdf$',
     BillingStatementPdfView.as_view(),
     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/make_bulk_payment/$', BulkStripePaymentView.as_view(),
     name=BulkStripePaymentView.urlname),
 url(r'^billing/make_wire_invoice/$', WireInvoiceView.as_view(),
     name=WireInvoiceView.urlname),
 url(r'^billing/cards/$', CardsView.as_view(), name=CardsView.url_name),
Beispiel #3
0

domain_settings = patterns(
    'corehq.apps.domain.views',
    url(r'^$', DefaultProjectSettingsView.as_view(), name=DefaultProjectSettingsView.urlname),
    url(r'^my_settings/$', EditMyProjectSettingsView.as_view(), name=EditMyProjectSettingsView.urlname),
    url(r'^basic/$', EditBasicProjectInfoView.as_view(), name=EditBasicProjectInfoView.urlname),
    url(r'^subscription/change/$', SelectPlanView.as_view(), name=SelectPlanView.urlname),
    url(r'^subscription/change/confirm/$', ConfirmSelectedPlanView.as_view(),
        name=ConfirmSelectedPlanView.urlname),
    url(r'^subscription/change/request/$', SelectedEnterprisePlanView.as_view(),
        name=SelectedEnterprisePlanView.urlname),
    url(r'^subscription/change/account/$', ConfirmBillingAccountInfoView.as_view(),
        name=ConfirmBillingAccountInfoView.urlname),
    url(r'^subscription/pro_bono/$', ProBonoView.as_view(), name=ProBonoView.urlname),
    url(r'^subscription/credits/make_payment/$', CreditsStripePaymentView.as_view(),
        name=CreditsStripePaymentView.urlname),
    url(r'^billing/statements/download/(?P<statement_id>[\w-]+).pdf$',
        BillingStatementPdfView.as_view(),
        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),