Django Admin Link Colonne Afficher les liens

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