dynamicweb/datacenterlight/urls.py

13 lines
485 B
Python
Raw Normal View History

2016-12-20 23:05:20 +00:00
from django.conf.urls import url
2017-05-23 17:13:44 +00:00
from .views import IndexView, BetaProgramView, LandingProgramView, BetaAccessView, PricingView
2016-12-20 23:05:20 +00:00
urlpatterns = [
url(r'^/?$', IndexView.as_view(), name='index'),
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'),
url(r'^/beta_access?$', BetaAccessView.as_view(), name='beta_access'),
2016-12-20 23:05:20 +00:00
]