21b2a01a84
This is all noop in Py3, and Py2 is broke now in various places. Dropping Py2 code as it will not be a thing going forward. Django 2 is the next release, Py2 support will be dropped, as such, dropping this is forward looking.
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"])
|