aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/admin/templates/restart.html
blob: 2bb77e9d791df2c157b0de0c62a209961d590449 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ template "base.html" . }}

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

{{ define "content" }}
<h2>Restart All Games</h2>
<p>全ゲームの main player を削除し、multiplayer に変更して一括リスタートします。</p>
<form method="post">
  <div>
    <label>終了日時 (JST)</label>
    <input type="datetime-local" name="end_at" required>
  </div>
  <div>
    <button type="submit">Restart All Games</button>
  </div>
</form>
{{ end }}