aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/admin/templates/users.html
diff options
context:
space:
mode:
Diffstat (limited to 'backend/admin/templates/users.html')
-rw-r--r--backend/admin/templates/users.html4
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>