diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-03-20 20:18:42 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-03-20 20:18:42 +0900 |
| commit | 5fc5745af97c580c443e0a9ab42dd9225687fa20 (patch) | |
| tree | 66f7e3fbd92e59fc4818aaee87fce5f46a5d616a | |
| parent | 4b5c0f0d1f9711b27ededbcdda785753325f04ea (diff) | |
| download | phperkaigi-2025-albatross-5fc5745af97c580c443e0a9ab42dd9225687fa20.tar.gz phperkaigi-2025-albatross-5fc5745af97c580c443e0a9ab42dd9225687fa20.tar.zst phperkaigi-2025-albatross-5fc5745af97c580c443e0a9ab42dd9225687fa20.zip | |
feat(backend): allow admin to edit game started_at
| -rw-r--r-- | backend/admin/templates/game_edit.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/admin/templates/game_edit.html b/backend/admin/templates/game_edit.html index 53d647c..0d92c95 100644 --- a/backend/admin/templates/game_edit.html +++ b/backend/admin/templates/game_edit.html @@ -31,7 +31,7 @@ </div> <div> <label>Started At</label> - <input type="datetime-local" name="started_at" value="{{ if .Game.StartedAt }}{{ .Game.StartedAt }}{{ end }}" readonly> + <input type="datetime-local" name="started_at" value="{{ if .Game.StartedAt }}{{ .Game.StartedAt }}{{ end }}"> </div> <div> <label>Problem ID</label> |
