「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