mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-13 13:12:42 +00:00
Fix whitespace and indentation, per pep8
This commit is contained in:
@ -3,9 +3,11 @@ from django.contrib import admin
|
||||
from pgweb.util.admin import PgwebAdmin
|
||||
from models import ProfessionalService
|
||||
|
||||
|
||||
class ProfessionalServiceAdmin(PgwebAdmin):
|
||||
list_display = ('__unicode__', 'approved',)
|
||||
list_filter = ('approved',)
|
||||
search_fields = ('org__name',)
|
||||
|
||||
|
||||
admin.site.register(ProfessionalService, ProfessionalServiceAdmin)
|
||||
|
Reference in New Issue
Block a user