Skip to content

Commit e5ee22b

Browse files
committed
Add commenter filter
1 parent 55a0107 commit e5ee22b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

junction/proposals/admin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def get_queryset(self, request):
103103
@admin.register(models.ProposalComment)
104104
class ProposalCommentAdmin(TimeAuditAdmin):
105105
list_display = ('comment', 'proposal', 'commenter', 'private', 'reviewer') + TimeAuditAdmin.list_display
106-
list_filter = ['private', 'reviewer']
106+
list_filter = ['private', 'reviewer', 'commenter']
107107

108108
def get_queryset(self, request):
109109
qs = super(ProposalCommentAdmin, self).get_queryset(request)

0 commit comments

Comments
 (0)