f09ee6cd79
Signed-off-by: Nico Schottelius <nico@wurzel.schottelius.org>
8 lines
160 B
Python
8 lines
160 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.index, name='index'),
|
|
url(r'beta$', views.beta, name='beta'),
|
|
]
|