list_filter = ('approved', 'answered', 'published')
list_display = ('question', 'email', 'created_at', 'approved', 'answered', 'published')
date_hierarchy = 'created_at'
+ search_fields = ('question', 'edited_question', 'answer', 'email')
fields = (
- ('email', 'created_at'),
+ ('email', 'created_at', 'changed_at'),
'question',
'approved',
'edited_question',
('published', 'published_at'),
)
- readonly_fields = ['created_at', 'answered_at', 'published_at']
+ readonly_fields = ['created_at', 'answered_at', 'published_at', 'changed_at']
admin.site.register(Question, QuestionAdmin)