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.
source
share