Reputation: 13624
Is there any way to render a callable
method, defined for model, in the admin site except using custom templates? Something similar to the way one can do in list_display.
Upvotes: 0
Views: 164
Reputation: 599778
Yes - in Django 1.2+, you can use readonly_fields
, which works in exactly the same way as list_display
.
Upvotes: 1