Mercurial > public > sg101
view countdown/admin.py @ 1135:3a2669a92709
Update kombu for a redis UNIX socket problem.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 12 Oct 2016 20:29:36 -0500 |
parents | 654b55ad9134 |
children |
line wrap: on
line source
from django.contrib import admin from .models import Event @admin.register(Event) class EventAdmin(admin.ModelAdmin): list_display = ['__unicode__', 'is_active'] list_editable = ['is_active'] list_filter = ['is_active'] ordering = ['-event_date']