I'd like to add a derived field to a default ModelAdmin.fieldsets like I would by specifying a method and adding it to the ModelAdmin.list_display property, but there doesn't seem to be an easy way to do that (if there is ANY way to do that).

The default Django Admin list view seems to have a lot more options than the change form view does.

Let's say I have two fields for a location: latitude and longitude, and instead of displaying them on a change form I want to display a Google Maps Static Map image instead - I already have a method that will return the src url for the image - I just need a way to add that image to the model change form instead of showing those two fields.

link|improve this question

40% accept rate
feedback

1 Answer

customize admin view http://docs.djangoproject.com/en/dev/ref/contrib/admin/#ref-contrib-admin

link|improve this answer
1  
Not sure what you mean, and there are no examples in the one paragraph of documentation. Can you elaborate with an example? – Jough Dempsey Nov 28 '10 at 15:06
you can create custom view like ever you want in django admin – Efazati Nov 29 '10 at 4:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.