mirror of
https://github.com/evennia/evennia.git
synced 2026-04-05 07:27:17 +02:00
Remove object-inline on admin account page
This commit is contained in:
parent
ce19978157
commit
4bda0a0ac6
1 changed files with 1 additions and 3 deletions
|
|
@ -243,12 +243,10 @@ class AccountAdmin(BaseUserAdmin):
|
|||
This is the main creation screen for Users/accounts
|
||||
|
||||
"""
|
||||
from .objects import ObjectInline
|
||||
|
||||
list_display = ("username", "email", "is_staff", "is_superuser")
|
||||
form = AccountChangeForm
|
||||
add_form = AccountCreationForm
|
||||
inlines = [AccountTagInline, AccountAttributeInline, ObjectInline]
|
||||
inlines = [AccountTagInline, AccountAttributeInline]
|
||||
readonly_fields = ["db_date_created", "serialized_string"]
|
||||
fieldsets = (
|
||||
(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue