Changeset - 9bf90b411ec2
[Not reviewed]
0 1 0
James Polley - 7 years ago 2017-10-13 02:02:44
jp@jamezpolley.com
Enhance admin interface for result notifications
1 file changed with 6 insertions and 1 deletions:
0 comments (0 inline, 0 general)
vendor/symposion/reviews/admin.py
Show inline comments
...
 
@@ -17,7 +17,12 @@ admin.site.register(
 
    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(
 
    Review,
0 comments (0 inline, 0 general)