diff options
| author | Brian Rosner <brosner@gmail.com> | 2008-08-25 19:56:14 +0000 |
|---|---|---|
| committer | Brian Rosner <brosner@gmail.com> | 2008-08-25 19:56:14 +0000 |
| commit | 853f4d29b8021e9d919fe69e757ab1baeb6fc3ae (patch) | |
| tree | b59494ca79cd1a7050411ce7944c6d29d16ea963 | |
| parent | 834ce902c2cf094366944acb99958696c2891f17 (diff) | |
Fixed #8547 -- Corrected the breadcrumb display in the object_history.html template. Thanks sorl for catching this.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8555 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/admin/options.py | 2 | ||||
| -rw-r--r-- | django/contrib/admin/templates/admin/object_history.html | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/django/contrib/admin/options.py b/django/contrib/admin/options.py index 1d00683012..930db7767e 100644 --- a/django/contrib/admin/options.py +++ b/django/contrib/admin/options.py @@ -702,6 +702,7 @@ class ModelAdmin(BaseModelAdmin): from django.contrib.admin.models import LogEntry model = self.model opts = model._meta + app_label = opts.app_label action_list = LogEntry.objects.filter( object_id = object_id, content_type__id__exact = ContentType.objects.get_for_model(model).id @@ -714,6 +715,7 @@ class ModelAdmin(BaseModelAdmin): 'module_name': capfirst(force_unicode(opts.verbose_name_plural)), 'object': obj, 'root_path': self.admin_site.root_path, + 'app_label': app_label, } context.update(extra_context or {}) return render_to_response(self.object_history_template or [ diff --git a/django/contrib/admin/templates/admin/object_history.html b/django/contrib/admin/templates/admin/object_history.html index c37012b296..5c357b224d 100644 --- a/django/contrib/admin/templates/admin/object_history.html +++ b/django/contrib/admin/templates/admin/object_history.html @@ -2,7 +2,13 @@ {% load i18n %} {% block breadcrumbs %} -<div class="breadcrumbs"><a href="../../../../">{% trans 'Home' %}</a> › <a href="../../">{{ module_name }}</a> › <a href="../">{{ object|truncatewords:"18" }}</a> › {% trans 'History' %}</div> +<div class="breadcrumbs"> + <a href="../../../../">{% trans 'Home' %}</a> › + <a href="../../../">{{ app_label|capfirst|escape }}</a> › + <a href="../../">{{ module_name }}</a> › + <a href="../">{{ object|truncatewords:"18" }}</a> › + {% trans 'History' %} +</div> {% endblock %} {% block content %} |
