Django 1.8 show_change_link inline does not show links

I added show_change_link = True for the inline in Django 1.8, but links are not added to the inline elements. Each model in the application is registered with the administrator. Am I missing something? I can only find one suggestion regarding this feature in the documentation.

EDIT:

class TheInline(admin.TabularInline):
    model = TheModel
    readonly_fields = ['timestamp']
    extra = 0
    show_change_link = True

I do not use any user admin like grappelli and all the models in the application are registered in admin.

+4
source share
1 answer

Got! Some time ago, I made a custom admin template for a different view, and I did not understand that I had affected everything in the administrator - I just did not think. You made me go in the right direction OriolJ. Thank!

+3
source

All Articles