diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-09-06 10:16:31 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-09-06 10:16:33 +0900 |
| commit | abb9d17e79405cbee8bb98887b457d2a7e215ba9 (patch) | |
| tree | 85dd6645cda1740c51234f292fc2a7d9bb32e880 /backend/admin/templates/users.html | |
| parent | 3e77bb9ee1aabab22138de9850d8bd434eda6d91 (diff) | |
| download | iosdc-japan-2025-albatross-abb9d17e79405cbee8bb98887b457d2a7e215ba9.tar.gz iosdc-japan-2025-albatross-abb9d17e79405cbee8bb98887b457d2a7e215ba9.tar.zst iosdc-japan-2025-albatross-abb9d17e79405cbee8bb98887b457d2a7e215ba9.zip | |
fix(backend): duplicate slashes in some URLs
Diffstat (limited to 'backend/admin/templates/users.html')
| -rw-r--r-- | backend/admin/templates/users.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/admin/templates/users.html b/backend/admin/templates/users.html index 4b8e6dc..39ec589 100644 --- a/backend/admin/templates/users.html +++ b/backend/admin/templates/users.html @@ -8,10 +8,10 @@ <ul> {{ range .Users }} <li> - <a href="{{ $.BasePath }}/admin/users/{{ .UserID }}"> + <a href="{{ $.BasePath }}admin/users/{{ .UserID }}"> {{ .DisplayName }} (id={{ .UserID }} username={{ .Username }}){{ if .IsAdmin }} <em>admin</em>{{ end }} </a> - <form method="post" action="{{ $.BasePath }}/admin/users/{{ .UserID }}/fetch-icon"> + <form method="post" action="{{ $.BasePath }}admin/users/{{ .UserID }}/fetch-icon"> <button type="submit">Fetch Icon</button> </form> </li> |
