aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/admin/templates/problems.html
blob: 120789ee688974e19be9332ac6c56f0845e68cd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{ 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>
    </li>
  {{ end }}
</ul>
{{ end }}