From 35e81ce5af17268773e5f4fc48bc8452c89cc552 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 17 Jul 2005 17:44:57 +0000 Subject: [PATCH] Changed models.auth.LogEntry.get_admin_url NOT to be hard-coded with an initial slash git-svn-id: http://code.djangoproject.com/svn/django/trunk@158 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/models/auth.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/django/models/auth.py b/django/models/auth.py index 7f1a32f2a7..121704d9e7 100644 --- a/django/models/auth.py +++ b/django/models/auth.py @@ -282,8 +282,11 @@ class LogEntry(meta.Model): return self.get_content_type().get_object_for_this_type(id__exact=self.object_id) def get_admin_url(self): - "Returns the admin URL to edit the object represented by this log entry" - return "/%s/%s/%s/" % (self.get_content_type().package, self.get_content_type().python_module_name, self.object_id) + """ + Returns the admin URL to edit the object represented by this log entry. + This is relative to the Django admin index page. + """ + return "%s/%s/%s/" % (self.get_content_type().package, self.get_content_type().python_module_name, self.object_id) def _module_log_action(user_id, content_type_id, object_id, object_repr, action_flag, change_message=''): e = LogEntry(None, None, user_id, content_type_id, object_id, object_repr[:200], action_flag, change_message)