added a blackboard

This commit is contained in:
2020-10-02 22:27:12 +00:00
parent 5a9daeafaf
commit 768b35d5ec
12 changed files with 181 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='blackboard'),
#path('<str:filter>', views.members_view),
#path('jobs/<str:slug>', views.jobs_view),
#path('member/<str:member_name>', views.profile_view, name="member"),
]