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.

27 lines
875 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(
  18. "invoice/pdf/<slug:transaction_id>/", views.pdf_invoice, name="hc-invoice-pdf"
  19. ),
  20. path("pricing/set_plan/", views.set_plan, name="hc-set-plan"),
  21. path(
  22. "pricing/get_client_token/", views.get_client_token, name="hc-get-client-token"
  23. ),
  24. path("pricing/charge/", views.charge_webhook),
  25. ]