Django admin fabriquer un lien de colonne
# Set yourColumn as the one that links to the form to update the row
class yourModel(admin.ModelAdmin):
list_display_links = ('yourColumn',)
Trained Tuna