vote up 1 vote down star
2

Before Django 1.0 there was an easy way to get the admin url of an object, and I had written a small filter that I'd use like this: <a href="{{ object|admin_url }}" .... > ... </a>

Basically I was using the url reverse function with the view name being 'django.contrib.admin.views.main.change_stage'

reverse( 'django.contrib.admin.views.main.change_stage', args=[app_label, model_name, object_id] )

to get the url.

As you might have guessed, I'm trying to update to the latest version of Django, and this is one of the obstacles I came across, that method for getting the admin url doesn't work anymore.

How can I do this in django 1.0? (or 1.1 for that matter, as I'm trying to update to the latest version in the svn).

flag

74% accept rate

7 Answers

vote up 4 vote down check

I had a similar issue where I would try to call reverse('admin_index') and was constantly getting django.core.urlresolvers.NoReverseMatch errors.

Turns out I had the old format admin urls in my urls.py file.

I had this in my urlpatterns:

(r'^admin/(.*)', admin.site.root),

which gets the admin screens working but is the deprecated way of doing it. I needed to change it to this:

(r'^admin/', include(admin.site.urls) ),

Once I did that, all the goodness that was promised in the Reversing Admin URLs docs started working.

link|flag
nice, thanks for the update! – hasen j May 11 at 22:21
Awesome, this fixed another issue I was having with the get_urls() method of ModelAdmin not being called. Thanks! – Arnaud Oct 1 at 10:12
vote up 0 vote down
from django.core.urlresolvers import reverse
def url_to_edit_object(object):
  url = reverse('admin:%s_%s_change' %(object._meta.app_label,  object._meta.module_name),  args=[object.id] )
  return u'<a href="%s">Edit %s</a>' %(url,  object.__unicode__())

This is similar to hansen_j's solution except that it uses url namespaces, admin: being the admin's default application namespace.

link|flag
vote up 1 vote down

If you are using 1.0, try making a custom templatetag that looks like this:

def adminpageurl(object, link=None):
    if link is None:
        link = object
    return "<a href=\"/admin/%s/%s/%d\">%s</a>" % (
        instance._meta.app_label,
        instance._meta.module_name,
        instance.id,
        link,
    )

then just use {% adminpageurl my_object %} in your template (don't forget to load the templatetag first)

link|flag
vote up 0 vote down

None of the solutions work in Django 1.0.2

link|flag
vote up 0 vote down

I have the same problem. For some reason, reverse("admin_index") won't work with 1.1 beta 1 SVN-10645, and neither will Alex's solution. Does anyone have a clue on this?

link|flag
checkout bskinner's solution. – hasen j May 12 at 8:31
That worked, thank you. – Poromenos May 26 at 16:02
vote up 3 vote down

For pre 1.1 django it is simple (for default admin site instance):

reverse('admin_%s_%s_change' % (app_label, model_name), args=(object_id,))
link|flag
vote up 1 vote down

I solved this by changing the expression to:

reverse( 'django-admin', args=["%s/%s/%s/" % (app_label, model_name, object_id)] )

This requires/assumes that the root url conf has a name for the "admin" url handler, mainly that name is "django-admin",

i.e. in the root url conf:

url(r'^admin/(.*)', admin.site.root, name='django-admin'),

It seems to be working, but I'm not sure of its cleanness.

link|flag
This works for 1.0, but will not work for 1.1, which has a better solution: see Alex Koshelev's answer. – Carl Meyer Mar 29 at 15:08
Actually I tried it and it didn't work, and he said it's for 1.0, no? – hasen j Mar 29 at 15:25
Syntax has changed in 1.1 with the introduction of url namespacing: docs.djangoproject.com/en/dev/… – sleepyjames Aug 4 at 16:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.