aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/admin/templates/game_edit.html
blob: 48a06256d793425c43ffff0e28f7061fdd800a01 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{{ template "base.html" . }}

{{ define "breadcrumb" }}
<a href="{{ .BasePath }}/admin/dashboard">Dashboard</a> | <a href="{{ .BasePath }}/admin/games">Games</a>
{{ end }}

{{ define "content" }}
<form method="post">
  <div>
    <label>Game ID</label>
    <input type="text" name="game_id" value="{{ .Game.GameID }}" readonly required>
  </div>
  <div>
    <label>Display Name</label>
    <input type="text" name="display_name" value="{{ .Game.DisplayName }}" required>
  </div>
  <div>
    <label>Game Type</label>
    <select name="game_type" required>
      <option value="1v1"{{ if eq .Game.GameType "1v1" }} selected{{ end }}>1v1</option>
      <option value="multiplayer"{{ if eq .Game.GameType "multiplayer" }} selected{{ end }}>Multiplayer</option>
    </select>
  </div>
  <div>
    <label>State</label>
    <select name="state" required>
      <option value="closed"{{ if eq .Game.State "closed" }} selected{{ end }}>Closed</option>
      <option value="waiting"{{ if eq .Game.State "waiting" }} selected{{ end }}>Waiting</option>
      <option value="starting"{{ if eq .Game.State "starting" }} selected{{ end }}>Starting</option>
      <option value="gaming"{{ if eq .Game.State "gaming" }} selected{{ end }}>Gaming</option>
      <option value="finished"{{ if eq .Game.State "finished" }} selected{{ end }}>Finished</option>
    </select>
  </div>
  <div>
    <label>Duration Seconds</label>
    <input type="number" name="duration_seconds" value="{{ .Game.DurationSeconds }}" required>
  </div>
  <div>
    <label>Started At</label>
    <input type="datetime-local" name="started_at" value="{{ if .Game.StartedAt }}{{ .Game.StartedAt }}{{ end }}">
  </div>
  <div>
    <label>Problem ID</label>
    <input type="text" name="problem_id" value="{{ .Game.ProblemID }}">
  </div>
  <div>
    <button type="submit">Save</button>
  </div>
</form>
{{ end }}