views:

332

answers:

2

I'm trying to modify the adimn 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.

Where is a good tutorial how to write custom widgets for Django?

+1  A: 

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

DanJ