events
This commit is contained in:
parent
4b9ea3731a
commit
093e1b86f3
8 changed files with 81 additions and 67 deletions
11
pandora/event/admin.py
Normal file
11
pandora/event/admin.py
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue