Jinja doesn't render anything when extending layout template
问题 I'm trying to display data on a page, but the page is completely empty. I know the database has data in it, and I know the query_db function returns the correct results, but I can't figure out why the data isn't being rendered by Jinja. What is causing this problem? @app.route('/toto') def toto(): entries = query_db("select col1,col2 from toto where col1 = 'grand test'") return render_template('show_results.html', entries = entries) show_results.html : {% extends "layout.html" %} {% block