Private
Public Access
1
0

adding survey storage

This commit is contained in:
Sander Roosendaal
2020-01-10 16:09:33 +01:00
parent 1f96ff4fa7
commit 04f0ff5781
10 changed files with 204 additions and 5 deletions

10
survey/urls.py Normal file
View File

@@ -0,0 +1,10 @@
from django.conf import settings
from django.conf.urls import url, include
from django.urls import path, re_path
import survey.views as views
urlpatterns = [
#re_path(r'^responses/$',views.ResponseList.as_view(),name='responses_view'),
#re_path(r'^response/(?P<pk>\d+)/$',views.ResponseDetail.as_view(),name='response_view')
]