aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/admin/templates/testcases.html
blob: c27a45f2c72d4c6563f9172bf458c342504bc044 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{{ template "base.html" . }}

{{ define "breadcrumb" }}
<a href="{{ .BasePath }}admin/dashboard">Dashboard</a> | <a href="{{ .BasePath }}admin/problems">Problems</a> | <a href="{{ .BasePath }}admin/problems/{{ .Problem.ProblemID }}">{{ .Problem.Title }}</a>
{{ end }}

{{ define "content" }}
<h2>Testcases for {{ .Problem.Title }}</h2>
<div>
  <a href="{{ .BasePath }}admin/problems/{{ .Problem.ProblemID }}/testcases/new">Create New Testcase</a>
</div>
{{ range .Testcases }}
  <h3>{{ .TestcaseID }}</h3>
  <div>
    <a href="{{ $.BasePath }}admin/problems/{{ $.Problem.ProblemID }}/testcases/{{ .TestcaseID }}">Edit</a>
  </div>
  <h4>Stdin</h4>
  <div>
    <pre><code>{{ .Stdin }}</code></pre>
  </div>
  <h4>Stdout</h4>
  <div>
    <pre><code>{{ .Stdout }}</code></pre>
  </div>
{{ end }}
{{ end }}