我正在尝试将“comment.html”包含到 store.html 和 store.html 扩展 base.html 中。
但是 Django 抛出错误comment.html (<class 'django.template.base.TemplateDoesNotExist'>)
所有模板都在同一个目录中。store.html
工作正常,它可以base.html
正常扩展,没有任何问题。但是当我包含comment.html
在store.html
错误中时......我已经用它来{% include "comment.html" %}
包含comment.html
store.html
这些文件所在的目录树:vaibhav@ubuntu:~/TRAC/bright-coupons/brightCoupons/brightCouponsApp$ tree。
├── __init__.py
├── models.py
├── templates
│ ├── about.html
│ ├── base.html
│ ├── comment.html
│ ├── contact.html
│ ├── error.html
│ ├── index.html
│ ├── index-var.html
│ ├── store.html
│ ├── stores.html
│ ├── submit-form.php
│ ├── support.html
│ └── tags.html
├── tests.py
├── views.py