We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37f9aa0 commit e79368fCopy full SHA for e79368f
1 file changed
ietf/review/admin.py
@@ -5,6 +5,9 @@
5
ReviewRequest)
6
7
class ReviewerSettingsAdmin(admin.ModelAdmin):
8
+ def acronym(self, obj):
9
+ return obj.team.acronym
10
+ list_display = ['id', 'person', 'acronym', 'min_interval', 'filter_re', 'remind_days_before_deadline', ]
11
list_filter = ["team"]
12
search_fields = ["person__name"]
13
ordering = ["-id"]
0 commit comments