update
[prawokultury.git] / questions / admin.py
1 from django.contrib import admin
2 from .models import Question, Tag, TagCategory
3
4 class QuestionAdmin(admin.ModelAdmin):
5     model = Question
6     list_filter = ('approved', 'answered', 'published', 'answered_by')
7     list_display = ('question', 'email', 'created_at', 'approved', 'answered', 'published')
8     date_hierarchy = 'created_at'
9     search_fields = ('question', 'edited_question', 'answer', 'email')
10     fields = (
11         ('email', 'created_at', 'changed_at'),
12         'question',
13         'approved',
14         'edited_question',
15         'answer',
16         'answered_by',
17         'tags',
18         ('answered', 'answered_at'),
19         ('published', 'published_at'),
20         
21     )
22     readonly_fields = ['created_at', 'answered_at', 'published_at', 'changed_at']
23
24
25 admin.site.register(Question, QuestionAdmin)
26 admin.site.register(Tag)
27 admin.site.register(TagCategory)