I'm currently keeping my templates in /projectdir/static/html/
. I've begun to have enough of them that I've created a subdirectory: /projectdir/static/html/tag_request/
. If I want to have a template in /tag_request/
inherit from one in /html/
how do I do it?
I've read that with django {% extends base.html %}
should be written relative to /projectdir/templates/
or wherever TEMPLATE_DIRS
points. How do I set TEMPLATE_DIRS
in appengine (or do I have to put my templates in /projectdir/templates/
)?
Thanks!