24 lines
No EOL
499 B
Python
24 lines
No EOL
499 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('/plays')
|
|
def get_plays():
|
|
return render_template('plays.jinja') |