aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/admin/templates/problems.html
diff options
context:
space:
mode:
authorClaude <noreply@anthropic.com>2026-02-24 12:19:35 +0000
committerClaude <noreply@anthropic.com>2026-02-24 12:19:35 +0000
commit6a939257294655dd5c1b5ada323dfdc7dfc013f3 (patch)
tree138dc38f5bf2d5d53b2eca16ab7c271c128c9f28 /backend/admin/templates/problems.html
parent6232e2f3094d53151a17db9c36f35e192d9d304d (diff)
downloadphperkaigi-2026-albatross-6a939257294655dd5c1b5ada323dfdc7dfc013f3.tar.gz
phperkaigi-2026-albatross-6a939257294655dd5c1b5ada323dfdc7dfc013f3.tar.zst
phperkaigi-2026-albatross-6a939257294655dd5c1b5ada323dfdc7dfc013f3.zip
fix(admin): show username in submissions and add testcase links to problems list
Submissions list and detail pages now display the username alongside the user ID instead of showing only a numeric ID. The problems list page now includes a direct link to each problem's testcases for easier navigation. https://claude.ai/code/session_01JF5ZmGAQ4zNbhV5DM729Fw
Diffstat (limited to 'backend/admin/templates/problems.html')
-rw-r--r--backend/admin/templates/problems.html1
1 files changed, 1 insertions, 0 deletions
diff --git a/backend/admin/templates/problems.html b/backend/admin/templates/problems.html
index 120789e..c5fc290 100644
--- a/backend/admin/templates/problems.html
+++ b/backend/admin/templates/problems.html
@@ -14,6 +14,7 @@
<a href="{{ $.BasePath }}admin/problems/{{ .ProblemID }}">
{{ .Title }} (id={{ .ProblemID }} language={{ .Language }})
</a>
+ | <a href="{{ $.BasePath }}admin/problems/{{ .ProblemID }}/testcases">Testcases</a>
</li>
{{ end }}
</ul>