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

from django.urls import path
from . import views
urlpatterns = [
path("pricing/", views.pricing, name="hc-pricing"),
path("accounts/profile/billing/", views.billing, name="hc-billing"),
path(
"accounts/profile/billing/history/",
views.billing_history,
name="hc-billing-history",
),
path("accounts/profile/billing/address/", views.address, name="hc-billing-address"),
path(
"accounts/profile/billing/payment_method/",
views.payment_method,
name="hc-payment-method",
),
path("pricing/update/", views.update, name="hc-update-subscription"),
path("pricing/token/", views.token, name="hc-get-client-token"),
]