You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
930 B

7 years ago
  1. from django.conf.urls import url
  2. from . import views
  3. urlpatterns = [
  4. url(r'^pricing/$',
  5. views.pricing,
  6. name="hc-pricing"),
  7. url(r'^accounts/profile/billing/$',
  8. views.billing,
  9. name="hc-billing"),
  10. url(r'^accounts/profile/billing/history/$',
  11. views.billing_history,
  12. name="hc-billing-history"),
  13. url(r'^accounts/profile/billing/address/$',
  14. views.address,
  15. name="hc-billing-address"),
  16. url(r'^accounts/profile/billing/payment_method/$',
  17. views.payment_method,
  18. name="hc-payment-method"),
  19. url(r'^invoice/pdf/([\w-]+)/$',
  20. views.pdf_invoice,
  21. name="hc-invoice-pdf"),
  22. url(r'^pricing/set_plan/$',
  23. views.set_plan,
  24. name="hc-set-plan"),
  25. url(r'^pricing/get_client_token/$',
  26. views.get_client_token,
  27. name="hc-get-client-token"),
  28. url(r'^pricing/charge/$', views.charge_webhook),
  29. ]