===== Admin ===== URLs ==== List {{ app_label }}_{{ model_name }}_changelist Change {{ app_label }}_{{ model_name }}_change object_id https://docs.djangoproject.com/en/stable/ref/contrib/admin/#reversing-admin-urls Customize top-right corner of admin pages ========================================= Create your own `templates/admin/base_site.html` that comes ahead of the admin's default one in the templates path. At least in Django 1.8+, this gives you a "View site" link for free:: {% extends "admin/base.html" %} {% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %} {% block branding %}

{{ site_header|default:_('Django administration') }}

{% endblock %} {% block userlinks %} Clear cache / {{ block.super }} {% endblock userlinks %} Prior to Django 1.8:: {% extends "admin/base.html" %} {% block title %}{{ title }} | Caktus Admin{% endblock %} {% block branding %}

Caktus Admin

{% endblock %} {% block nav-global %}
Return to Caktus Home | Clear cache
{% endblock %}