我試圖將'comment.html'包含到store.html和store.html extend base.html中。Django包含無法找到模板
但Django是拋出錯誤comment.html (<class 'django.template.base.TemplateDoesNotExist'>)
所有模板都在同一目錄。 store.html
工作正常,當我包括comment.html
在store.html
錯誤拋出... 我用{% include "comment.html" %}
這包括comment.html
到store.html
它是正確擴展base.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
重新檢查文件名。 – Rohan 2013-05-02 10:01:41
did..checked ...在Django擴展和包含在相同的模板是否支持? – 2013-05-02 10:04:07
是的,它是支持的,不應該是問題。你的'{%extend%}'行是什麼? – Rohan 2013-05-02 10:10:57