Files
postgres-web/pgweb/pugs/admin.py
2019-01-26 16:19:26 +01:00

14 lines
273 B
Python

from django.contrib import admin
from pgweb.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)