Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 213 Bytes

django.md

File metadata and controls

5 lines (4 loc) · 213 Bytes

To debug a missing template error:

python ./manage.py shell
from django.conf import settings; print settings.TEMPLATE_DIRS[0]
from django.template import loader; print loader.get_template('foo.html')