8 lines
218 B
Python
8 lines
218 B
Python
from django.contrib import admin
|
|
|
|
from symposion.speakers.models import Speaker
|
|
|
|
|
|
admin.site.register(Speaker,
|
|
list_display=["name", "email", "created"],
|
|
search_fields=["name"])
|