Answers for "django admin make column link"

0

django admin make column link

# Set yourColumn as the one that links to the form to update the row
class yourModel(admin.ModelAdmin):
	list_display_links = ('yourColumn',)
Posted by: Guest on March-09-2022

Python Answers by Framework

Browse Popular Code Answers by Language