Personally, i have a templates directory in my app directory: project/templates project/blog/templates project/otherapp/templates etc.
In my settings, i build the template dirs by definng all my dirs as relative paths, and doing some magic (hosted is worked out elsewhere, and is just the difference between locally running and on the webhost, i dont check for debug here as sometimes i need to use debug on the host too): if HOSTED: DIR_ROOT = '/path/to/app/root' else: DIR_ROOT = os.getcwd() TEMPLATE_DIRS = (DIR_ROOT + '/relative/path/' etc.) Tom On Wed, 2007-09-12 at 20:45 +0200, Florian Lindner wrote: > Hello, > I've just started with Django and have worked through the excellent tutorial. > At chapter 2 [1] of the tutorial it says to set: > > TEMPLATE_DIRS = ( > "/home/my_username/mytemplates", > ) > > Which makes me putting all templates of all apps in my project into this > directory (resp. subdirectories of this dir) > How can I decouple my templates to an app specific directoy? The way that my > apps are self contained also regarding their templates? > > Or did I get something fundamentaly wrong? > > Thanks, > > Florian > > [1] http://www.djangoproject.com/documentation/tutorial02/ > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---