Skip to content
This repository has been archived by the owner on Oct 29, 2020. It is now read-only.

Commit

Permalink
[cpanel/qpool] make it easier for rd - add columns to django-admin
Browse files Browse the repository at this point in the history
  • Loading branch information
alexef committed Nov 13, 2011
1 parent ff3ee60 commit ad0370a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wouso/core/qpool/admin.py
Expand Up @@ -38,7 +38,8 @@ class QuestionAdmin(admin.ModelAdmin):
inlines = [AnswersInline,TagsInline,ScheduleInline]
form = QuestionForm
exclude = ('tags',)
list_display = ('question', 'tag', 'scheduled', 'category')
list_display = ('question', 'tag', 'scheduled', 'category', 'active', 'id', 'proposed_by', 'endorsed_by')
list_filter = ('active', 'category', 'endorsed_by')

class Questions2(admin.ModelAdmin):
list_display = ('text')
Expand Down

0 comments on commit ad0370a

Please sign in to comment.