blob: c5fc290f1eeeb66d3d624896760541dd0a62e922 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{{ template "base.html" . }}
{{ define "breadcrumb" }}
<a href="{{ .BasePath }}admin/dashboard">Dashboard</a>
{{ end }}
{{ define "content" }}
<div>
<a href="{{ .BasePath }}admin/problems/new">Create New Problem</a>
</div>
<ul>
{{ range .Problems }}
<li>
<a href="{{ $.BasePath }}admin/problems/{{ .ProblemID }}">
{{ .Title }} (id={{ .ProblemID }} language={{ .Language }})
</a>
| <a href="{{ $.BasePath }}admin/problems/{{ .ProblemID }}/testcases">Testcases</a>
</li>
{{ end }}
</ul>
{{ end }}
|