This commit is contained in:
j 2011-05-28 13:35:57 +02:00
commit 093e1b86f3
8 changed files with 81 additions and 67 deletions

11
pandora/event/admin.py Normal file
View file

@ -0,0 +1,11 @@
# -*- coding: utf-8 -*-
# vi:si:et:sw=4:sts=4:ts=4
from django.contrib import admin
import models
class EventAdmin(admin.ModelAdmin):
search_fields = ['name']
admin.site.register(models.Event, EventAdmin)