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.

22 lines
770 B

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