File tree 1 file changed +0
-9
lines changed
1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change 1
1
from django .urls import path
2
- from django .views .generic .base import RedirectView
3
2
4
3
from cdhweb .people import views
5
4
6
5
app_name = "people"
7
6
urlpatterns = [
8
- path ("staff/" , views .StaffListView .as_view (), name = "staff" ),
9
- path ("students/" , views .StudentListView .as_view (), name = "students" ),
10
- path ("affiliates/" , views .AffiliateListView .as_view (), name = "affiliates" ),
11
- path ("executive-committee/" , views .ExecListView .as_view (), name = "exec-committee" ),
12
7
# speakers list was deleted; serve 410 gone
13
8
path ("speakers/" , views .speakerlist_gone ),
14
- # redirect from /people/faculty -> /people/affiliates
15
- path ("faculty/" , RedirectView .as_view (url = "/people/affiliates/" , permanent = True )),
16
- # redirect from /people/postdocs -> /people/staff
17
- path ("postdocs/" , RedirectView .as_view (url = "/people/staff/" , permanent = True )),
18
9
]
You can’t perform that action at this time.
0 commit comments