2016-12-20 18:05:20 -05:00
|
|
|
from django.conf.urls import url
|
|
|
|
|
2017-06-15 23:32:20 +05:30
|
|
|
from .views import IndexView, BetaProgramView, LandingProgramView, BetaAccessView, PricingView, SuccessView
|
2016-12-20 18:05:20 -05:00
|
|
|
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
url(r'^/?$', IndexView.as_view(), name='index'),
|
2017-02-14 23:34:06 -05:00
|
|
|
url(r'^/beta-program/?$', BetaProgramView.as_view(), name='beta'),
|
|
|
|
url(r'^/landing/?$', LandingProgramView.as_view(), name='landing'),
|
2017-05-22 23:35:29 -05:00
|
|
|
url(r'^/pricing/?$', PricingView.as_view(), name='pricing'),
|
2017-06-07 03:05:21 +05:30
|
|
|
url(r'^/order-success/?$', SuccessView.as_view(), name='order_success'),
|
2017-05-22 18:03:33 +02:00
|
|
|
url(r'^/beta_access?$', BetaAccessView.as_view(), name='beta_access'),
|
2016-12-20 18:05:20 -05:00
|
|
|
]
|