Django 1.8 show_change_link in inline not showing links -


i added show_change_link = true inline in django 1.8, links not added inlined items. every model in app registered in admin. missing something? can find 1 sentence regarding feature in documentation.

edit:

class theinline(admin.tabularinline):     model = themodel     readonly_fields = ['timestamp']     = 0     show_change_link = true 

i not using custom admin grappelli, , models in app registered in admin.

got it! while made customized admin template view, , didn't realize affected in admin - wasn't thinking. got me going in right direction oriolj. thanks!


Comments

Popular posts from this blog

android - How to save instance state of selected radiobutton on menu -

python 3 IndexError: list index out of range -

IF statement in MySQL trigger -