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')