对于django模型,如何获取django管理URL以添加另一个或列表对象等?

时间:2011-03-04 17:39:16

标签: django django-admin django-urls

尽管我喜欢django文档,但the section on bookmarklets in the admin却很奇怪。

我的问题是:如果我在视图中并且我有一个django模型(或者,在某些情况下,是一个实际的对象),我如何才能访问该模型(或对象)的相关管理页面?如果我有对象coconut_transportation.swallow.objects.all()[34],我怎么能直接跳到管理页面来编辑那个特定的燕子?

同样,如何获取管理页面的URL以添加另一个吞咽?

3 个答案:

答案 0 :(得分:49)

http://docs.djangoproject.com/en/dev/ref/contrib/admin/#reversing-admin-urls

obj = coconut_transportation.swallow.objects.all()[34]

# list url
url = reverse("admin:coconut_transportation_swallow_changelist")

# change url
url = reverse("admin:coconut_transportation_swallow_change", args=[obj.id])

# add url
url = reverse("admin:coconut_transportation_swallow_add")

答案 1 :(得分:12)

您可以从实际的对象实例中检索这个,这对我有用:

from django.core import urlresolvers
from django.contrib.contenttypes.models import ContentType

content_type = ContentType.objects.get_for_model(object.__class__)
object_admin_url = django.core.urlresolvers.reverse("admin:%s_%s_change" % (content_type.app_label, content_type.model), args=(object.pk,))

请参阅:http://djangosnippets.org/snippets/1916/

答案 2 :(得分:9)

您实际上可以在不查询ContentTypes

的情况下检索信息

只需将其添加到您的模型类:

def get_admin_url(self):
    return urlresolvers.reverse("admin:%s_%s_change" %
        (self._meta.app_label, self._meta.model_name), args=(self.pk,))