2016-12-20 23:05:20 +00:00
|
|
|
from django.conf.urls import url
|
|
|
|
|
2017-06-22 07:48:54 +00:00
|
|
|
from .views import IndexView, BetaProgramView, LandingProgramView, BetaAccessView, PricingView, SuccessView, PaymentOrderView, OrderConfirmationView
|
2016-12-20 23:05:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
url(r'^/?$', IndexView.as_view(), name='index'),
|
2017-02-15 04:34:06 +00:00
|
|
|
url(r'^/beta-program/?$', BetaProgramView.as_view(), name='beta'),
|
|
|
|
url(r'^/landing/?$', LandingProgramView.as_view(), name='landing'),
|
2017-05-23 04:35:29 +00:00
|
|
|
url(r'^/pricing/?$', PricingView.as_view(), name='pricing'),
|
2017-06-21 07:45:37 +00:00
|
|
|
url(r'^/payment/?$', PaymentOrderView.as_view(), name='payment'),
|
2017-06-22 07:48:54 +00:00
|
|
|
url(r'^/order-confirmation/(?P<pk>\d+)/?$', OrderConfirmationView.as_view(), name='order_confirmation'),
|
2017-06-06 21:35:21 +00:00
|
|
|
url(r'^/order-success/?$', SuccessView.as_view(), name='order_success'),
|
2017-05-22 16:03:33 +00:00
|
|
|
url(r'^/beta_access?$', BetaAccessView.as_view(), name='beta_access'),
|
2016-12-20 23:05:20 +00:00
|
|
|
]
|