Re: Overridden Admin Template Not Recognized

2011-06-01 Thread Lee
TEMPLATE_LOADERS has that line out of the box in 1.3 I moved my app before admin in INSTALLED_APPS but no help. Finally found the answer in this post: http://stackoverflow.com/questions/2263808/how-to-override-django-edit-inline-tabular-html-for-only-1-app Put tabular.html in

Re: Overridden Admin Template Not Recognized

2011-05-27 Thread Brian Bouterse
You'll need make sure that "django.template.loaders.filesystem.Loader" is enabled in your TEMPLATE LOADERS to use the app in the way you want. Also, you'll need to place your app BEFORE the 'django.contrib.admin' application in the INSTALLED_APPS list. Hope this helps, Brian On Thu, May 26,

Overridden Admin Template Not Recognized

2011-05-26 Thread Lee
I'm trying to override the TabularInline template following the instructions in https://docs.djangoproject.com/en/dev/ref/contrib/admin/#overriding-admin-templates. I copied the tabular.html file to myproject/templates/admin/myapp and made changes to it, but they have no effect. I double-checked