X-Git-Url: https://git.mdrn.pl/prawokultury.git/blobdiff_plain/548d9fe735b1c4f04c296f01a3bf73149f627005..7ae251c4e5d11be3f6d7999a0d72413c724d0a98:/questions/admin.py diff --git a/questions/admin.py b/questions/admin.py index d8676dc..11eedc4 100755 --- a/questions/admin.py +++ b/questions/admin.py @@ -1,22 +1,27 @@ 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') fields = ( - ('email', 'created_at'), + ('email', 'created_at', 'changed_at'), 'question', 'approved', 'edited_question', 'answer', + 'answered_by', + 'tags', ('answered', 'answered_at'), ('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) +admin.site.register(Tag) +admin.site.register(TagCategory)