为什么我的代码在模板的文件夹中找不到.html?

时间:2019-04-20 01:02:47

标签: python-3.x flask

我正在学习本教程,但是我的代码找不到模板的路径: https://www.digitalocean.com/community/tutorials/how-to-structure-large-flask-applications

发出的错误是这样的:

  

jinja2.exceptions.TemplateNotFound: auth/signin.html

当我尝试访问auth / signin.html

  

jinja2.exceptions.TemplateNotFound: 404.html

当我尝试访问... /

我只是按CTRL + C CTRL + V教程。

我所做的唯一调整是将flask.ext.wtf更改为flask_wtf,将flask.ext.sqlalchemy更改为flask_sqlalchemy,并且没有使用virtualenv。

我的文件夹是以这种方式组织的:

|-- run.py
|-- config.py
|__ /app
     |-- __init__.py
     |-- /mod_auth
         |-- __init__.py
         |-- controllers.py
         |-- models.py
         |-- forms.py
     |__ /templates
         |-- 404.html
         |__ /auth
             |-- signin.html
     |-- forgot.html
     |-- signup.html
     |__ /static

任何人都能成功运行吗?

0 个答案:

没有答案