BrickTracker/bricktracker/views/index.py

19 lines
483 B
Python
Raw Permalink Normal View History

2025-01-17 11:03:00 +01:00
from flask import Blueprint, render_template
from .exceptions import exception_handler
from ..minifigure_list import BrickMinifigureList
from ..set_list import BrickSetList
index_page = Blueprint('index', __name__)
# Index
@index_page.route('/', methods=['GET'])
@exception_handler(__file__)
def index() -> str:
return render_template(
'index.html',
brickset_collection=BrickSetList().last(),
minifigure_collection=BrickMinifigureList().last(),
)