管理面板优化

This commit is contained in:
zhbaor 2023-12-13 07:43:14 +00:00
parent 14a5729e06
commit 5a76ff59fb
2 changed files with 16 additions and 3 deletions

View file

@ -5,7 +5,14 @@ from .models import RunOrder, AnonymousUser, MowerVersion
@admin.register(RunOrder)
class RunOrderAdmin(admin.ModelAdmin):
pass
list_display = [
"version",
"uuid",
"time",
"facility_level",
"skill",
"grandet_mode",
]
@admin.register(AnonymousUser)