> Summary : You could simply copy the file base_site.html from admin
> templates to a directory called "admin" in your own template directory
> and add a link to your own pages in {% block branding %} so you would
> have access to the link on every admin page.

Actually, there is an empty block defined in base.html to serve this
purpose:

{% block nav-global %}
 
<a href="{% url admin_index %}">Main</a> |
<a href="{% url admin_grants noarg %}">Grants</a> |
<a href="{% url admin_globals noarg %}">Global</a> |
<a href="{% url admin_site noarg %} ">Site</a>
<p></p>
{% endblock %}

I use the above in a custom base_site.html and it works great
--~--~---------~--~----~------------~-------~--~----~
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