Merge pull request #79 from miurahr/show-review-result
admin: show review result
This commit is contained in:
commit
86669ee3d5
1 changed files with 14 additions and 2 deletions
|
@ -1,6 +1,18 @@
|
|||
from django.contrib import admin
|
||||
|
||||
from symposion.reviews.models import NotificationTemplate
|
||||
from symposion.reviews.models import NotificationTemplate, ProposalResult
|
||||
|
||||
|
||||
admin.site.register(NotificationTemplate)
|
||||
admin.site.register(
|
||||
NotificationTemplate,
|
||||
list_display=[
|
||||
'label',
|
||||
'from_address',
|
||||
'subject'
|
||||
]
|
||||
)
|
||||
|
||||
admin.site.register(
|
||||
ProposalResult,
|
||||
list_display=['proposal', 'status', 'score', 'vote_count', 'accepted']
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue