Changes between Initial Version and Version 2 of Ticket #694


Ignore:
Timestamp:
Oct 25, 2005, 10:53:29 AM (18 years ago)
Author:
Adrian Holovaty
Comment:

(Fixed formatting in the description.)

TEMPLATE_DIRS is a setting, and each of your Django installations should have a separate settings file. This is how you designate different database passwords for different servers, for instance. The solution is to use separate settings files for your multiple environments.

Also, if that doesn't float your boat, you can use the "app_directories" template loader. See http://www.djangoproject.com/documentation/templates_python/#loader-types .

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #694

    • Property Resolutioninvalid
    • Property Status newclosed
  • Ticket #694 – Description

    initial v2  
    33For my current django project, I have something like:
    44
     5{{{
    56project/
    67   apps/
    78   templates/
     9}}}
    810
    911It'd be nice if the templates directory could be specified relative to the project root.
Back to Top