Files @ 4e22717639a7
Branch filter:

Location: symposion_app/symposion/reviews/admin.py

Scott Bragg
Add description to ICal feed to help Giggety app identify conference
from django.contrib import admin

from symposion.reviews.models import NotificationTemplate, ProposalResult, ResultNotification


admin.site.register(
    NotificationTemplate,
    list_display=[
        'label',
        'from_address',
        'subject'
    ]
)

admin.site.register(
    ProposalResult,
    list_display=['proposal', 'status', 'score', 'vote_count', 'accepted']
)

admin.site.register(ResultNotification)