Mercurial > public > sg101
annotate countdown/admin.py @ 1096:d9cd3180c12c
More GCalendar V3 conversion in progress.
Built a brand new post editor. It is hardcoded into GCalendar
right now. We will make it more general in the future.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 14 Jun 2016 21:16:09 -0500 |
parents | ecb8f07d937b |
children | 654b55ad9134 |
rev | line source |
---|---|
bgneal@1081 | 1 from django.contrib import admin |
bgneal@1081 | 2 |
bgneal@1081 | 3 from .models import Event |
bgneal@1081 | 4 |
bgneal@1081 | 5 |
bgneal@1081 | 6 @admin.register(Event) |
bgneal@1081 | 7 class EventAdmin(admin.ModelAdmin): |
bgneal@1081 | 8 list_display = ['__unicode__', 'is_active'] |
bgneal@1081 | 9 list_editable = ['is_active'] |