Files
postgres-web/pgweb/pugs/admin.py
2014-01-01 16:33:52 +01:00

12 lines
255 B
Python

from django.contrib import admin
from util.admin import PgwebAdmin
from models import PUG
class PUGAdmin(PgwebAdmin):
list_display = ('title', 'approved', )
list_filter = ('approved', )
search_fields = ('title', )
admin.site.register(PUG, PUGAdmin)