2012-09-08 23:29:18 +00:00
|
|
|
from django.contrib import admin
|
|
|
|
|
2015-06-11 23:07:49 +00:00
|
|
|
from symposion.reviews.models import NotificationTemplate, ProposalResult
|
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']
|
|
|
|
)
|