[Answered ]-Add url to a field in TabularInline in Django admin

1👍

Set show_change_link = True on your inline to display a link to the admin change form for an inline object

class PostInline(admin.TabularInline):
    model = Post
    show_change_link = True

Leave a comment