Monday, February 28, 2011

Re: Extend admin template without copying the whole template

Martin Brochhaus <martin.brochhaus@googlemail.com> writes:

> So I tried the obvious:
>
> {% extends "admin/base.html" %}
> {% block breadcrumb %}
> [old breadcrumb code]
> [my additional code]
> {% endblock %}
>
> And of course the obvious error happened: The template tries to extend
> itself.

I think one solution is to create a symlink called base_orig.html in
your project templates directory pointing to the system base.html.
Then change the extends line above to

{% extends "admin/base_orig.html" %}

Dan

--
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 django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

No comments:

Post a Comment