Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
concrexit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
thalia
concrexit
Merge requests
!1305
Fix url resolving
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix url resolving
fix/url-resolving
into
master
Overview
5
Commits
1
Changes
3
All threads resolved!
Hide all comments
Merged
Ghost User
requested to merge
fix/url-resolving
into
master
5 years ago
Overview
5
Commits
1
Changes
3
All threads resolved!
Hide all comments
Expand
Previous behaviour
Steps to reproduce:
Try to open the statistics page
See member list
New behaviour
Steps to validate that it works:
Try to open the statistics page
Statistics page
0
0
Merge request reports
Compare
master
version 3
179be180
5 years ago
version 2
1743f22a
5 years ago
version 1
8fe89cd8
5 years ago
master (base)
and
latest version
latest version
93232a55
1 commit,
5 years ago
version 3
179be180
1 commit,
5 years ago
version 2
1743f22a
1 commit,
5 years ago
version 1
8fe89cd8
1 commit,
5 years ago
3 files
+
14
−
14
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
website/activemembers/urls.py
+
6
−
6
Options
@@ -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
(
'
societi
es/
'
,
Society
IndexView
.
as_view
(),
name
=
'
societi
es
'
),
path
(
'
committe
es/
'
,
Committee
IndexView
.
as_view
(),
name
=
'
committe
es
'
),
path
(
'
societies/<int:pk>/
'
,
SocietyDetailView
.
as_view
(),
name
=
'
society
'
),
path
(
'
board
s/
'
,
Board
IndexView
.
as_view
(),
name
=
'
board
s
'
),
path
(
'
societie
s/
'
,
Society
IndexView
.
as_view
(),
name
=
'
societie
s
'
),
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