I was just curious if anything like this get_admin_url patch was already available in django trunk somewhere and I can eliminate the patch from my patched version of django. Or is there a more appropriate way to do this so it doesn't cause a conflict?
Link: http://dpaste.com/59850/ Pasted: svn diff /opt/local/lib/python2.5/site-packages/django/db/models/ base.py Index: /opt/local/lib/python2.5/site-packages/django/db/models/base.py =================================================================== --- /opt/local/lib/python2.5/site-packages/django/db/models/base.py (revision 7787) +++ /opt/local/lib/python2.5/site-packages/django/db/models/base.py (working copy) @@ -8,6 +8,7 @@ import django.db.models.manager # Ditto. from django.core import validators from django.core.exceptions import ObjectDoesNotExist, MultipleObjectsReturned, FieldError +from django.core.urlresolvers import reverse from django.db.models.fields import AutoField, ImageField, FieldDoesNotExist from django.db.models.fields.related import OneToOneRel, ManyToOneRel, OneToOneField from django.db.models.query import delete_objects, Q, CollectedObjects @@ -524,6 +525,8 @@ setattr(self, cachename, get_image_dimensions(filename)) return getattr(self, cachename) + def get_admin_url(self): + return reverse('django.contrib.admin.views.main.change_stage', args=(self._meta.app_label, self._meta.module_name, self.pk,)) ############################################ # HELPER FUNCTIONS (CURRIED MODEL METHODS) # ############################################ -- Milan --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---