d95d66dac8
We're lock-step with symposion, and upstream is dead. Vendor it.
8 lines
238 B
Python
8 lines
238 B
Python
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"])
|