11 lines
394 B
Python
11 lines
394 B
Python
from django.conf.urls import url
|
|
|
|
from .views import IndexView, BetaProgramView, LandingProgramView, PricingView
|
|
|
|
|
|
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'),
|
|
url(r'^/pricing/?$', PricingView.as_view(), name='pricing'),
|
|
]
|