annotate countdown/admin.py @ 1132:1407af5472e4

Add our own table stack. Foundation's table.stack only shows the first th in a thead. Added my own version that shows all of them. Updated templates to use new class.
author Brian Neal <bgneal@gmail.com>
date Wed, 28 Sep 2016 20:25:29 -0500
parents 654b55ad9134
children
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']
bgneal@1112 10 list_filter = ['is_active']
bgneal@1112 11 ordering = ['-event_date']