服务器 - Flask + Python 2.6.2 + CentOS
控制台
@app.route('/admin/dashboard')
def admin_dashboard():
return render_template('admin/dashboard.html')
我尝试使用header.thml加载dashboard.html
dashboard.html
{% include 'header.html' %}
<div>
dashboard
</div>
在此之后我收到此错误。
jinja2.exceptions.TemplateNotFound
TemplateNotFound: header.html
我尝试了其他方法,但它没有用。
你能看出问题是什么吗?
答案 0 :(得分:1)
从http://flask.pocoo.org/docs/quickstart/,您的模板需要位于名为“templates”的文件夹中。 Header.html应该在[project] /templates/header.html中。