How do I override an admin template (e.g. admin/index.html) while at the same time extending it (see https://docs.djangoproject.com/en/dev/ref/contrib/admin/#overriding-vs-replacing-an-admin-template)?

First - I know that this question has been asked and answered before (see Django: Overriding AND extending an app template) but as the answer says it isn't directly applicable if you're using the app_directories template loader (which is most of the time).

My current workaround is to make copies and extend from them instead of extending directly from the admin templates. This works great but it's really confusing and adds extra work when the admin templates change.

It could think of some custom extend-tag for the templates but I don't want to reinvent the wheel if there already exists a solution.

On a side note: Does anybody know if this problem will be addressed by Django itself?

link|improve this question

57% accept rate
Copying the admin templates, extending them and overriding/adding blocks is the most efficient, although not optimal workflow given the current state of Django. I haven't seen any other way to do what you're trying to do in three years of working with it :) – Brandon Jul 5 '11 at 14:17
Well - I don't know if this is a good thing or not but at least people like you have come to the same conclusion. That's good to hear. :) – Semmel Jul 5 '11 at 16:02
feedback

2 Answers

up vote 5 down vote accepted

I had the same issue about a year and a half ago and I found a nice template loader on djangosnippets.org that makes this easy. It allows you to extend a template in a specific app, giving you the ability to create your own admin/index.html that extends the admin/index.html template from the admin app. Like this:

{% extends "admin:admin/index.html" %}

{% block sidebar %}
    {{block.super}}
    <div>
        <h1>Extra links</h1>
        <a href="/admin/extra/">My extra link</a>
    </div>
{% endblock %}

I've given a full example on how to use this template loader in a blog post on my website.

link|improve this answer
This was exactly what I was looking for! Works great so far. – Semmel Jul 6 '11 at 10:12
I'm glad to hear that :). – heyman Jul 6 '11 at 15:13
feedback

The best way to do it is to put the Django admin templates inside your project. So your templates would be in templates/admin while the stock Django admin templates would be in say template/django_admin. Then, you can do something like the following:

templates/admin/change_form.html

{% extends 'django_admin/change_form.html' %}

Your stuff here

If you're worried about keeping the stock templates up to date, you can include them with svn externals or similar.

link|improve this answer
Using svn externals is a great idea. The problem this introduces is that all my translators are going to translate all those templates (because makemessages will collect the translation strings from all admin templates) which adds a lot of extra work if you're working with multiple languages. Maybe there is a way to exclude those templates from makemessages? – Semmel Jul 5 '11 at 16:06
Use the --ignore argument with makemessages. See: docs.djangoproject.com/en/dev/ref/django-admin/#makemessages – Chris Pratt Jul 5 '11 at 16:22
I think the the other answer fits my need better. But I like your solution and think it's a good alternative if you don't want to mess around with your template loaders. – Semmel Jul 6 '11 at 10:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.