mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-06 09:57:57 +00:00
12 lines
253 B
Python
12 lines
253 B
Python
from django.contrib import admin
|
|
|
|
from util.admin import PgwebAdmin
|
|
from models import *
|
|
|
|
class PUGAdmin(PgwebAdmin):
|
|
list_display = ('title', 'approved', )
|
|
list_filter = ('approved', )
|
|
search_fields = ('title', )
|
|
|
|
admin.site.register(PUG, PUGAdmin)
|