Search code examples
djangodjango-adminforeign-keys

Foreign keys in django admin list display


If a django model contains a foreign key field, and if that field is shown in list mode, then it shows up as text, instead of displaying a link to the foreign object.

Is it possible to automatically display all foreign keys as links instead of flat text?

(of course it is possible to do that on a field by field basis, but is there a general method?)

Example:

class Author(models.Model):
    ...

class Post(models.Model):
    author = models.ForeignKey(Author)

Now I choose a ModelAdmin such that the author shows up in list mode:

class PostAdmin(admin.ModelAdmin):
    list_display = [..., 'author',...]

Now in list mode, the author field will just use the __unicode__ method of the Author class to display the author. On the top of that I would like a link pointing to the url of the corresponding author in the admin site. Is that possible?

Manual method:

For the sake of completeness, I add the manual method. It would be to add a method author_link in the PostAdmin class:

def author_link(self, item):
    return '<a href="../some/path/%d">%s</a>' % (item.id, unicode(item))
author_link.allow_tags = True

That will work for that particular field but that is not what I want. I want a general method to achieve the same effect. (One of the problems is how to figure out automatically the path to an object in the django admin site.)


Solution

  • I don't think there is a mechanism to do what you want automatically out of the box.

    But as far as determining the path to an admin edit page based on the id of an object, all you need are two pieces of information:

    a) self.model._meta.app_label

    b) self.model._meta.module_name

    Then, for instance, to go to the edit page for that model you would do:

    '../%s_%s_change/%d' % (self.model._meta.app_label, self.model._meta.module_name, item.id)
    

    Take a look at django.contrib.admin.options.ModelAdmin.get_urls to see how they do it.

    I suppose you could have a callable that takes a model name and an id, creates a model of the specified type just to get the label and name (no need to hit the database) and generates the URL a above.

    But are you sure you can't get by using inlines? It would make for a better user interface to have all the related components in one page...

    Edit:

    Inlines (linked to docs) allow an admin interface to display a parent-child relationship in one page instead of breaking it into two.

    In the Post/Author example you provided, using inlines would mean that the page for editing Posts would also display an inline form for adding/editing/removing Authors. Much more natural to the end user.

    What you can do in your admin list view is create a callable in the Post model that will render a comma separated list of Authors. So you will have your Post list view showing the proper Authors, and you edit the Authors associated to a Post directly in the Post admin interface.