示例#1
0
     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),
 url(r'^billing/cards/(?P<card_token>card_[\w]+)/$',
     CardView.as_view(),
     name=CardView.url_name),
 url(r'^subscription/$',
     DomainSubscriptionView.as_view(),
     name=DomainSubscriptionView.urlname),
 url(r'^subscription/renew/$',
     SubscriptionRenewalView.as_view(),
     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,
示例#2
0
     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),
 url(r'^billing/cards/(?P<card_token>card_[\w]+)/$', CardView.as_view(), name=CardView.url_name),
 url(r'^subscription/$', DomainSubscriptionView.as_view(), name=DomainSubscriptionView.urlname),
 url(r'^subscription/renew/$', SubscriptionRenewalView.as_view(),
     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'),
示例#3
0
     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),
 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),