c7ce7fe020
This change is based on the PyOhio fork located at: https://github.com/PyCon/pycon/search?utf8=%E2%9C%93&q=twitter_username
9 lines
278 B
Python
9 lines
278 B
Python
from __future__ import unicode_literals
|
|
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"])
|