1👍
✅
When using moidel methods, you need to add them to the readonly_fields list as well.
class PostAdmin(admin.ModelAdmin):
fields = ['vote_count']
readonly_fields = ['vote_count']
class Meta:
model = Post
Source:stackexchange.com