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
This commit is contained in:
Adrian Holovaty 2005-07-17 17:44:57 +00:00
parent 58df4ce636
commit 35e81ce5af
1 changed files with 5 additions and 2 deletions

View File

@ -282,8 +282,11 @@ class LogEntry(meta.Model):
return self.get_content_type().get_object_for_this_type(id__exact=self.object_id) return self.get_content_type().get_object_for_this_type(id__exact=self.object_id)
def get_admin_url(self): 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=''): 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) e = LogEntry(None, None, user_id, content_type_id, object_id, object_repr[:200], action_flag, change_message)