Re: how to make admin app use templates from app templates folder?

2009-09-02 Thread Aljosa Mohorovic
On Sep 1, 7:03 pm, Bill Freeman wrote: > Add the filesystem template loader, put it before app directories loader, > and put the (absolute) path to your templates directory (e.g.; > /home/moho/myapp/templates) in TEMPLATES_DIR. thanks, this actually works for me. Aljosa

Re: how to make admin app use templates from app templates folder?

2009-09-01 Thread Bill Freeman
Add the filesystem template loader, put it before app directories loader, and put the (absolute) path to your templates directory (e.g.; /home/moho/myapp/templates) in TEMPLATES_DIR. Bill On Tue, Sep 1, 2009 at 11:52 AM, Aljosa Mohorovic < aljosa.mohoro...@gmail.com> wrote: > > admin app uses

Re: how to make admin app use templates from app templates folder?

2009-09-01 Thread Ramiro Morales
On Tue, Sep 1, 2009 at 12:52 PM, Aljosa Mohorovic wrote: > > admin app uses templates/admin/base_site.html but when i move that > file in myapp/templates/admin/base_site.html it is ignored. > is there an additional step to ensure admin app uses templates from > app

how to make admin app use templates from app templates folder?

2009-09-01 Thread Aljosa Mohorovic
admin app uses templates/admin/base_site.html but when i move that file in myapp/templates/admin/base_site.html it is ignored. is there an additional step to ensure admin app uses templates from app templates folder? i do have 'django.template.loaders.app_directories.load_template_source' in