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.

21 lines
691 B

  1. from django.urls import path
  2. from . import views
  3. urlpatterns = [
  4. path("pricing/", views.pricing, name="hc-pricing"),
  5. path("accounts/profile/billing/", views.billing, name="hc-billing"),
  6. path(
  7. "accounts/profile/billing/history/",
  8. views.billing_history,
  9. name="hc-billing-history",
  10. ),
  11. path("accounts/profile/billing/address/", views.address, name="hc-billing-address"),
  12. path(
  13. "accounts/profile/billing/payment_method/",
  14. views.payment_method,
  15. name="hc-payment-method",
  16. ),
  17. path("pricing/update/", views.update, name="hc-update-subscription"),
  18. path("pricing/token/", views.token, name="hc-get-client-token"),
  19. ]