On Oct 29, 1:14 pm, AndyB <[EMAIL PROTECTED]> wrote:
> Let's say I want to override change_list.html for an app called 'cms'.
>
> I create a <my template dir>/admin/cms/change_list.html
>
> and then call back to the original admin template overriding just want
> I want to change:
>
> {% extends "admin/change_list.html" %}
> {% block extrahead %}
> ...
> {% endblock %}
>
> However if I want to overide change_list.html for *all* apps my
> understanding is that I can create a file called:
>  <my template dir>/admin/change_list.html
> (i.e. just put it one less directory deep)
> then I get the error:
>
> TemplateSyntaxError at /admin/property_manager/property/
> Caught an exception while rendering: maximum recursion depth exceeded


You wouldn't currently be able to do that, at least in your proposed
structure because you have a file path <template_dir>/admin/
change_list.html and inside the change_list.html you are extending
"admin/change_list.html", which the template engine isn't currently
"smart" enough to deal with, as from the template engine's perspective
you're trying to extend "yourself", hence the recursion error.
Granted, i'm not the best person to talk to when it comes to the
template side of things, but i've had to write a patch for my own work
before with regard to the recursion issue.


>
> Surely it should work the same in both cases? If not then how should
> one override admin project-wide?
>
> Andy
--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to