from flask import Blueprint, render_template from models import Question main_bp = Blueprint("main", __name__) @main_bp.route("/") def index(): first_question = Question.query.first() return render_template("index.html", question=first_question)