Enhance admin interface for result notifications
This commit is contained in:
parent
3334469d30
commit
9bf90b411e
1 changed files with 6 additions and 1 deletions
7
vendor/symposion/reviews/admin.py
vendored
7
vendor/symposion/reviews/admin.py
vendored
|
@ -17,7 +17,12 @@ admin.site.register(
|
||||||
list_display=['proposal', 'status', 'score', 'vote_count', 'accepted']
|
list_display=['proposal', 'status', 'score', 'vote_count', 'accepted']
|
||||||
)
|
)
|
||||||
|
|
||||||
admin.site.register(ResultNotification)
|
admin.site.register(
|
||||||
|
ResultNotification,
|
||||||
|
list_display=['proposal','timestamp','to_address','subject'],
|
||||||
|
search_fields = ['proposal__title','to_address','subject'],
|
||||||
|
readonly_fields = ['proposal','timestamp','template','to_address','from_address','subject','body']
|
||||||
|
)
|
||||||
|
|
||||||
admin.site.register(
|
admin.site.register(
|
||||||
Review,
|
Review,
|
||||||
|
|
Loading…
Reference in a new issue