Started work on pre-ordered games page
This commit is contained in:
parent
dba5076107
commit
452eff32bf
3 changed files with 19 additions and 1 deletions
4
app.py
4
app.py
|
|
@ -19,6 +19,10 @@ def get_boardgame():
|
||||||
def get_statistics():
|
def get_statistics():
|
||||||
return render_template('statistics.jinja')
|
return render_template('statistics.jinja')
|
||||||
|
|
||||||
|
@app.get('/incoming')
|
||||||
|
def get_incoming():
|
||||||
|
return render_template('incoming.jinja')
|
||||||
|
|
||||||
@app.get('/plays')
|
@app.get('/plays')
|
||||||
def get_plays():
|
def get_plays():
|
||||||
return render_template('plays.jinja')
|
return render_template('plays.jinja')
|
||||||
0
static/javascript/incoming.js
Normal file
0
static/javascript/incoming.js
Normal file
14
templates/incoming.jinja
Normal file
14
templates/incoming.jinja
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
{% extends "base.jinja" %}
|
||||||
|
|
||||||
|
|
||||||
|
{% block body_block %}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{% endblock body_block %}
|
||||||
|
|
||||||
|
{% block extra_js_files %}
|
||||||
|
|
||||||
|
<script src="{{ url_for('static', filename='javascript/incoming.js') }}" defer></script>
|
||||||
|
|
||||||
|
{% endblock extra_js_files %}
|
||||||
Loading…
Reference in a new issue