added dummytemplate for members index

This commit is contained in:
Ilkka Oksanen
2016-06-08 18:52:20 +03:00
parent 2c3b834706
commit 2d8497349f
3 changed files with 13 additions and 2 deletions
+2
View File
@@ -16,7 +16,9 @@ Including another URLconf
"""
from django.conf.urls import url
from django.contrib import admin
from members.views import index as mindex
urlpatterns = [
url(r'^admin/', admin.site.urls),
url(r'^members/', mindex),
]