removing cheatsheets

This commit is contained in:
Qwann 2017-02-18 20:20:43 +01:00
parent b67a40bb51
commit 8c716c772a
4 changed files with 2 additions and 1021 deletions

View file

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