KankenOnline/kanken_online/search.py

8 lines
194 B
Python
Raw Normal View History

2024-10-14 11:15:47 +00:00
from flask import Blueprint, render_template
blueprint = Blueprint("search", __name__, url_prefix="/search")
@blueprint.route("/")
def search_page():
return render_template("search.html")