mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-10 03:49:24 +00:00
First commit: basic users
This commit is contained in:
11
core/urls.py
Normal file
11
core/urls.py
Normal file
@ -0,0 +1,11 @@
|
||||
from django.conf.urls import url
|
||||
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^$', views.index, name='core_index'),
|
||||
url(r'^login$', views.login, name='login'),
|
||||
url(r'^register$', views.register, name='register'),
|
||||
url(r'^guy$', views.guy, name='guy'),
|
||||
]
|
||||
|
Reference in New Issue
Block a user