fixes for django2

This commit is contained in:
artus
2018-10-11 14:35:31 +02:00
parent c753645193
commit 8fa768cad5
9 changed files with 22 additions and 17 deletions

View File

@@ -2,6 +2,8 @@ from django.conf.urls import url
from . import views
app_name = "notes"
urlpatterns = [
url(r'^$', views.IndexView.as_view(), name="index"),
url(r'sujets/$', views.SujetListView.as_view(), name="liste-sujet"),