2012-09-08 23:29:18 +00:00
|
|
|
from django.contrib import admin
|
|
|
|
|
2017-08-09 00:35:16 +00:00
|
|
|
from symposion.reviews.models import NotificationTemplate, ProposalResult, ResultNotification, Review
|
2012-09-08 23:29:18 +00:00
|
|
|
|
|
|
|
|
2015-06-11 23:07:49 +00:00
|
|
|
admin.site.register(
|
|
|
|
NotificationTemplate,
|
|
|
|
list_display=[
|
|
|
|
'label',
|
|
|
|
'from_address',
|
|
|
|
'subject'
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
admin.site.register(
|
|
|
|
ProposalResult,
|
|
|
|
list_display=['proposal', 'status', 'score', 'vote_count', 'accepted']
|
|
|
|
)
|
2016-09-03 03:16:05 +00:00
|
|
|
|
2017-10-13 01:58:26 +00:00
|
|
|
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']
|
|
|
|
)
|
2017-08-09 00:35:16 +00:00
|
|
|
|
|
|
|
admin.site.register(
|
|
|
|
Review,
|
|
|
|
list_display=[
|
|
|
|
'proposal',
|
|
|
|
'user',
|
|
|
|
'vote',
|
|
|
|
'submitted_at',
|
|
|
|
]
|
|
|
|
)
|