Add season codes and overview page.

This commit is contained in:
2019-01-12 15:02:21 +01:00
parent 30bab3e651
commit 29989b7e4e
6 changed files with 48 additions and 11 deletions

View File

@@ -14,6 +14,14 @@
value="{{ model['id'] }}"
readonly>
</div>
<div class="form-group">
<label for="code">Season Code</label>
<input name="code"
type="text"
class="form-control"
id="code"
value="{{ model['code'] }}">
</div>
<div class="form-group">
<label for="game">Game Name</label>
<input name="game"

View File

@@ -0,0 +1,7 @@
{% extends "base.html" %}
{% set active_page = "seasons" %}
{% block title %}{{ model.title }}{% endblock %}
{% block content %}
{% endblock %}