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.

30 lines
607 B

9 years ago
9 years ago
  1. from django.conf.urls import url
  2. from . import views
  3. urlpatterns = [
  4. url(r'^pricing/$',
  5. views.pricing,
  6. name="hc-pricing"),
  7. url(r'^billing/$',
  8. views.billing,
  9. name="hc-billing"),
  10. url(r'^invoice/([\w-]+)/$',
  11. views.invoice,
  12. name="hc-invoice"),
  13. url(r'^pricing/create_plan/$',
  14. views.create_plan,
  15. name="hc-create-plan"),
  16. url(r'^pricing/cancel_plan/$',
  17. views.cancel_plan,
  18. name="hc-cancel-plan"),
  19. url(r'^pricing/get_client_token/$',
  20. views.get_client_token,
  21. name="hc-get-client-token"),
  22. ]