Assume that you have the LikeAdmin admin class:
class LikeAdmin(admin.ModelAdmin):
fields = ('user', 'vote', 'content')
readonly_fields = ('user', 'vote', 'date')
Which fields will be visible in the web interface?
"Visible" implies that you can see the data from the field.