🚸(backend) enhance room search UX in admin debugging interface
Improve user experience when searching for rooms to streamline admin troubleshooting workflows.
This commit is contained in:
committed by
aleb_the_flash
parent
922a968418
commit
9569c58315
@@ -106,6 +106,10 @@ class RoomAdmin(admin.ModelAdmin):
|
||||
"""Room admin interface declaration."""
|
||||
|
||||
inlines = (ResourceAccessInline,)
|
||||
search_fields = ["name", "slug", "=id"]
|
||||
list_display = ["name", "slug", "access_level", "created_at"]
|
||||
list_filter = ["access_level", "created_at"]
|
||||
readonly_fields = ["id", "created_at", "updated_at"]
|
||||
|
||||
|
||||
class RecordingAccessInline(admin.TabularInline):
|
||||
|
||||
Reference in New Issue
Block a user