Readable Objects

Report a typo

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.

Select one or more options from the list
___

Create a free account to access the full topic