forked from extern/django-helpdesk
Set voted_by to read only in knowledge base admin
This commit is contained in:
parent
d7a8cb0de7
commit
bd070f3bec
@ -51,6 +51,8 @@ class FollowUpAdmin(admin.ModelAdmin):
|
||||
@admin.register(KBItem)
|
||||
class KBItemAdmin(admin.ModelAdmin):
|
||||
list_display = ('category', 'title', 'last_updated',)
|
||||
readonly_fields = ('voted_by',)
|
||||
|
||||
list_display_links = ('title',)
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user