12 lines
398 B
Python
12 lines
398 B
Python
from django.conf.urls import url
|
|
|
|
from .views import SignupView, ThanksView, KeyMachineView, RandomView
|
|
|
|
app_name = 'users'
|
|
urlpatterns = [
|
|
url(r'^random/?$', RandomView.as_view(), name='random'),
|
|
url(r'^signup/?$', SignupView.as_view(), name='signup'),
|
|
url(r'^thanks/?$', ThanksView.as_view(), name='thanks'),
|
|
url(r'^keymachine/?$', KeyMachineView.as_view(), name='keymachine'),
|
|
]
|