I would like to tweak a bit using django admin, especially changelist_view
class FeatureAdmin(admin.ModelAdmin): list_display = ( 'content_object_change_url', 'content_object', 'content_type', 'active', 'ordering', 'is_published', ) list_editable = ( 'active', 'ordering', ) list_display_links = ( 'content_object_change_url', ) admin.site.register(get_model('features', 'feature'), FeatureAdmin)
The idea is that 'content_object_change_url' can be a reference to another change_view ... convenience for the admin user to quickly jump directly to the element.
In another case, I would like this to add links to external sources or thumbnails of image fields.
I thought I heard about the "insert html" option, but maybe I overtook myself.
Thank you for your help!
source share