Overriding admin sidebar

428 views
Skip to first unread message

Larry Martell

unread,
Jan 20, 2014, 8:32:56 PM1/20/14
to django...@googlegroups.com
I am trying to override the admin sidebar block. As a starting point I
just copied the entire block from the django index template into my
own index.html file. But I am getting:

Error during template rendering

In template /usr/local/motor/motor/ui/templates/admin/index.html,
error at line 6

This is the contents of my index.html file:

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

{% block sidebar %}
<div id="content-related">
<div class="module" id="recent-actions-module">
<h2>{% trans 'Recent Actions' %}</h2>
<h3>{% trans 'My Actions' %}</h3>
{% load log %}
{% get_admin_log 10 as admin_log for_user user %}
{% if not admin_log %}
<p>{% trans 'None available' %}</p>
{% else %}
<ul class="actionlist">
{% for entry in admin_log %}
<li class="{% if entry.is_addition %}addlink{% endif %}{%
if entry.is_change %}changelink{% endif %}{% if entry.is_deletion
%}deletelink{% endif %}">
{% if entry.is_deletion or not entry.get_admin_url %}
{{ entry.object_repr }}
{% else %}
<a href="{{ entry.get_admin_url }}">{{
entry.object_repr }}</a>
{% endif %}
<br/>
{% if entry.content_type %}
<span class="mini quiet">{% filter capfirst %}{%
trans entry.content_type.name %}{% endfilter %}</span>
{% else %}
<span class="mini quiet">{% trans 'Unknown
content' %}</span>
{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}
</div>
</div>
{% endblock %}

What am I doing wrong here?

Jonathan Pentecost

unread,
Jan 21, 2014, 3:43:37 PM1/21/14
to django...@googlegroups.com

Larry Martell

unread,
Jan 21, 2014, 3:52:32 PM1/21/14
to django...@googlegroups.com
Thanks!!
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users...@googlegroups.com.
> To post to this group, send email to django...@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/5de5eed2-f498-4835-bec7-4241f29c3014%40googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
Reply all
Reply to author
Forward
0 new messages