Hey folks --
Right now (thanks to Robert's awesome admin work a few months ago) you can easily make a custom template for an admin change form. I've found at times that this is too heavyweight for me since often all I want to do is override the display of a specific field. For example: I've got a Sudoku app I'm building. Internally, the grid is stored as a string of 81 integers, but when I look at a puzzle in the admin I'd like to see the grid as, well, a grid.
Right now admin widgets use templates named ``widget/ <field_class_name>``. I'd like the change this to be similar to the change form templates and look for templates in this order::
* admin/<app_label>/<module_name>/widget/<field_id> * admin/<app_label>/<module_name>/widget/<field_class> * admin/<app_label>/widget/<field_class> * widget/<field_class> Any objections/additions? Jacob