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.
 
 
 
 
 

34 lines
732 B

from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^pricing/$',
views.pricing,
name="hc-pricing"),
url(r'^billing/$',
views.billing,
name="hc-billing"),
url(r'^invoice/([\w-]+)/$',
views.invoice,
name="hc-invoice"),
url(r'^pricing/create_plan/$',
views.create_plan,
name="hc-create-plan"),
url(r'^pricing/update_payment_method/$',
views.update_payment_method,
name="hc-update-payment-method"),
url(r'^pricing/cancel_plan/$',
views.cancel_plan,
name="hc-cancel-plan"),
url(r'^pricing/get_client_token/$',
views.get_client_token,
name="hc-get-client-token"),
]