DavidA wrote: > But then the template loaders always want to look for a template within > yet another app subdirectory (i.e. TEMPLATE_DIRS + '/myapp/base.html'). > Isn't that redundant? It seems if my TEMPLATE_DIR is "x" and my > template is "y" the loader should try and load "x/y" not "x/<app>/y". > Wouldn't that be more consistent with how other files like models are > located?
There are cases where template subdirectories are not 1-to-1 with your applications, and there are also cases where an application may want to overload some other app's templates. The most obvious cases of the latter are when you want to override the templates of Django-contributed applications. > I'm sure I'm just misunderstanding some design concept of Django, but > I'd appreciate if someone could explain this. And is there a "default" > place I can put templates where I won't need to set TEMPLATE_DIRS to > just keep it simpler? If you have the "app" loader in your setting.py file under TEMPLATE_LOADERS, it should automatically look under the "templates" directory of an application. -- --Max Battcher-- http://www.worldmaker.net/ --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---