base : ça commence à ressembler un à truc (vaguement)

This commit is contained in:
Qwann 2017-02-18 01:10:30 +01:00
parent 926bb66450
commit cd86ea2fd6
58 changed files with 7035 additions and 18 deletions

7
event/urls.py Normal file
View file

@ -0,0 +1,7 @@
from django.conf.urls import url
from event.views import Index
app_name = 'event'
urlpatterns = [
url(r'^$', Index.as_view(), name='index'),
]