2016-12-20 18:05:20 -05:00
|
|
|
from django.conf.urls import url
|
|
|
|
|
2017-04-24 03:01:05 +05:30
|
|
|
from .views import IndexView, BetaProgramView, LandingProgramView
|
2016-12-20 18:05:20 -05:00
|
|
|
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
url(r'^/?$', IndexView.as_view(), name='index'),
|
2017-04-24 03:01:05 +05:30
|
|
|
url(r'^/beta-program/?$', BetaProgramView.as_view(), name='beta'),
|
|
|
|
url(r'^/landing/?$', LandingProgramView.as_view(), name='landing'),
|
2016-12-20 18:05:20 -05:00
|
|
|
]
|