Add members

This commit is contained in:
2020-06-09 11:32:07 +00:00
parent 9e670c289f
commit 7c09d76035
11 changed files with 162 additions and 3 deletions

8
fet2020/members/urls.py Normal file
View File

@@ -0,0 +1,8 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
]