45706074d6
Signed-off-by: Hiroshi Miura <miurahr@linux.com>
18 lines
362 B
Python
18 lines
362 B
Python
from django.contrib import admin
|
|
|
|
from symposion.reviews.models import NotificationTemplate, ProposalResult
|
|
|
|
|
|
admin.site.register(
|
|
NotificationTemplate,
|
|
list_display=[
|
|
'label',
|
|
'from_address',
|
|
'subject'
|
|
]
|
|
)
|
|
|
|
admin.site.register(
|
|
ProposalResult,
|
|
list_display=['proposal', 'status', 'score', 'vote_count', 'accepted']
|
|
)
|