Browse Source

remove a few not-so-interesting columns from the admin to save some space. fixes #88

Natenom/support-murmur-13-1446181288462
Michael Ziegler 14 years ago
parent
commit
b25053f7e0
  1. 2
      pyweb/mumble/admin.py

2
pyweb/mumble/admin.py

@ -47,7 +47,7 @@ class MumbleAdmin(admin.ModelAdmin):
""" Specification for the "Server administration" admin section. """
list_display = [ 'name', 'srvid', 'get_addr', 'get_port', 'get_murmur_online', 'get_booted',
'get_is_public', 'get_users_regged', 'get_users_online', 'get_channel_count' ]
'get_is_public', 'get_users_online' ]
list_filter = [ 'addr', 'server' ]
search_fields = [ 'name', 'addr', 'port' ]
ordering = [ 'name' ]

Loading…
Cancel
Save