Django Admin membuat tautan kolom

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