blob: 828406a5ae2d6773c096d45f37415405ff92a13b (
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
27
|
{{ 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> | <a href="{{ .BasePath }}admin/problems/{{ .Problem.ProblemID }}/testcases">Testcases</a>
{{ end }}
{{ define "content" }}
<h2>New Testcase for {{ .Problem.Title }}</h2>
<form method="post">
<div>
<label>Problem</label>
<input type="text" value="{{ .Problem.Title }}" readonly>
<input type="hidden" name="problem_id" value="{{ .Problem.ProblemID }}">
</div>
<div>
<label>Stdin</label>
<textarea name="stdin" rows="10" required></textarea>
</div>
<div>
<label>Stdout</label>
<textarea name="stdout" rows="10" required></textarea>
</div>
<div>
<button type="submit">Create</button>
</div>
</form>
{{ end }}
|