Files @ 971cb5d12dfc
Branch filter:

Location: symposion_app/vendor/symposion/speakers/admin.py

James Polley
Expand admin ui for checkins to be useful for admins

... also (and this really should be another commit, I am a horrible
person) change name of exception text fields
1
2
3
4
5
6
7
8
from django.contrib import admin

from symposion.speakers.models import Speaker


admin.site.register(Speaker,
                    list_display=["name", "email", "created", "twitter_username"],
                    search_fields=["name"])