Files @ 71805cc66e00
Branch filter:

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

bsturmfels
Add additional account app templates

This works around use block "body" when we need block "content".
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"])