Skip to content
Snippets Groups Projects

Fix url resolving

Merged Ghost User requested to merge fix/url-resolving into master
All threads resolved!
Files
3
@@ -10,16 +10,16 @@ from activemembers.views import (
app_name = "activemembers"
urlpatterns = [
path('committees/',
CommitteeIndexView.as_view(), name='committees'),
path('committees/<int:pk>/',
CommitteeDetailView.as_view(), name='committee'),
path('societies/',
SocietyIndexView.as_view(), name='societies'),
path('committees/',
CommitteeIndexView.as_view(), name='committees'),
path('societies/<int:pk>/',
SocietyDetailView.as_view(), name='society'),
path('boards/',
BoardIndexView.as_view(), name='boards'),
path('societies/',
SocietyIndexView.as_view(), name='societies'),
re_path(r'boards/(?P<since>\d{4})-(?P<until>\d{4})/$',
BoardDetailView.as_view(), name='board'),
path('boards/',
BoardIndexView.as_view(), name='boards'),
]
Loading