mirror of
https://github.com/evennia/evennia.git
synced 2026-03-29 12:07:17 +02:00
Database schema has changed. Run migrations if you use South. Started work on tidying up admin interface.
This commit is contained in:
parent
60e980be67
commit
399919a8a9
14 changed files with 562 additions and 25 deletions
|
|
@ -9,7 +9,7 @@ from src.server.models import ServerConfig
|
|||
class ServerConfigAdmin(admin.ModelAdmin):
|
||||
"Custom admin for server configs"
|
||||
list_display = ('db_key', 'db_value')
|
||||
list_display_links = ('db_key')
|
||||
list_display_links = ('db_key',)
|
||||
ordering = ['db_key', 'db_value']
|
||||
search_fields = ['db_key']
|
||||
save_as = True
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue