add profile view of a member

This commit is contained in:
2020-08-27 16:55:55 +00:00
parent c9491f4d43
commit 18d519c157
6 changed files with 82 additions and 44 deletions

View File

@@ -5,6 +5,7 @@ from . import views
urlpatterns = [
path('', views.index, name='members'),
path('<str:filter>', views.index),
path('jobs/<str:slug>', views.index),
path('<str:filter>', views.members_view),
path('jobs/<str:slug>', views.jobs_view),
path('member/<str:member_name>', views.profile_view),
]