28 lines
588 B
Python
28 lines
588 B
Python
from flask import Flask, render_template, request
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.get("/")
|
|
def get_owned():
|
|
return render_template('owned.jinja')
|
|
|
|
@app.get("/wishlist")
|
|
def get_wishlist():
|
|
return render_template('wishlist.jinja')
|
|
|
|
@app.get("/boardgame")
|
|
def get_boardgame():
|
|
return render_template('boardgame.jinja')
|
|
|
|
|
|
@app.get('/statistics')
|
|
def get_statistics():
|
|
return render_template('statistics.jinja')
|
|
|
|
@app.get('/incoming')
|
|
def get_incoming():
|
|
return render_template('incoming.jinja')
|
|
|
|
@app.get('/plays')
|
|
def get_plays():
|
|
return render_template('plays.jinja')
|