Update syntax for relative imports
[pgweb/local.git] / pgweb / pugs / admin.py
blob8b66924b8c81e1cbbd094ec463d4542946307979
1 from django.contrib import admin
3 from pgweb.util.admin import PgwebAdmin
4 from .models import PUG
7 class PUGAdmin(PgwebAdmin):
8 list_display = ('title', 'approved', )
9 list_filter = ('approved', )
10 search_fields = ('title', )
13 admin.site.register(PUG, PUGAdmin)