from django.contrib import admin
-from .models import Question
+from .models import Question, Tag, TagCategory
class QuestionAdmin(admin.ModelAdmin):
model = Question
- list_filter = ('approved', 'answered', 'published')
+ list_filter = ('approved', 'answered', 'published', 'answered_by')
list_display = ('question', 'email', 'created_at', 'approved', 'answered', 'published')
date_hierarchy = 'created_at'
search_fields = ('question', 'edited_question', 'answer', 'email')
'approved',
'edited_question',
'answer',
+ 'answered_by',
'tags',
('answered', 'answered_at'),
('published', 'published_at'),
admin.site.register(Question, QuestionAdmin)
+admin.site.register(Tag)
+admin.site.register(TagCategory)