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
937 B

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