Re: Argh: templates, admin, and app loading order

2011-08-31 Thread Nan
Hm, yes, that might work, although at this point I'm a little concerned about changing the order of applications anyway, since I'm not sure what other side effects it might have. Mostly I'm uncomfortable with how important application order ends up being to how one's project operates, especially

Re: Argh: templates, admin, and app loading order

2011-08-30 Thread Doug Ballance
Can you use the filesystem loader as the first template loader, then set TEMPLATE_DIRS in settings.py to specify a template directory outside any app? Use this location for all of your overrides, just make sure the path is right... ie each app you override would have its own subdirectory. -- You

Argh: templates, admin, and app loading order

2011-08-30 Thread Nan
So... I'm trying to keep all site-specific code and overrides to third- party app behavior in a single "current_site" app in my project. For the sake of template loading order, this app is listed first in INSTALLED_APPS so that its templates are located before the third- party defaults. But... N