vote up 0 vote down star

I know the link template to reach an object is like following:

"{{ domain }}/{{ admin_dir }}/{{ appname }}/{{ modelname }}/{{ pk }}"

Is there a way built-in to get a permalink for an object?

from django.contrib import admin

def get_admin_permalink(instance, admin_site=admin.site):
    # returns admin URL for instance change page
    raise NotImplemented

EDIT

It seems in v1.1 admin has named URLs. Unfortunately it's not yet released.

flag

Yep, waiting for 1.1 is the only solution to this. – Van Gale Mar 27 at 19:52

1 Answer

vote up 1 vote down check

1.1 is out, the doc is right here: http://docs.djangoproject.com/en/dev/ref/contrib/admin/#admin-reverse-urls http://docs.djangoproject.com/en/dev/ref/templates/builtins/#url

I also used it a bit, the admin namespace will have to be specified whenever you are fetching an existing admin url.

# in urls.py, assuming you have a customized view
url(r'foo/$', 'foo', name='foo_index'),

# in the template, to get the admin url
{% url admin:foo-index %}

In 1.1, whenever an admin url is fetched, you'll have to specify the 'admin' namespace.

link|flag

Your Answer

Get an OpenID
or

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