DanJ
DanJ

Reputation: 3495

Tutorials on writing custom Django widgets?

I'm trying to modify the Django Admin interface. I need a custom type of textbox that does some pre/post processing on the text. If I understand correctly, a custom widget is the way to go about this.

Any good tutorials on how to write custom widgets for Django?

Upvotes: 14

Views: 6414

Answers (2)

DanJ
DanJ

Reputation: 3495

Found this reference for the admin site: http://www.slideshare.net/lincolnloop/customizing-the-django-admin

Upvotes: 2

Related Questions