Assume that you have the LikeAdmin admin class:
class LikeAdmin(admin.ModelAdmin):
fields = ('user', 'vote', 'content', 'is_up')
readonly_fields = ('user', 'vote')
def is_up(self, obj):
return obj.vote == 1What mistake is present in this implementation?