10 lines
316 B
Python
10 lines
316 B
Python
from django.conf.urls import url
|
|
|
|
from .views import IndexView, BetaProgramView, LandingProgramView
|
|
|
|
|
|
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'),
|
|
]
|