🚸(backend) enhance recording search UX in admin debugging interface
Improve user experience when searching for recording to streamline admin troubleshooting workflows.
This commit is contained in:
committed by
aleb_the_flash
parent
750b7f86b4
commit
0c0eed6f59
@@ -125,4 +125,7 @@ class RecordingAdmin(admin.ModelAdmin):
|
||||
"""Recording admin interface declaration."""
|
||||
|
||||
inlines = (RecordingAccessInline,)
|
||||
search_fields = ["status", "=id", "worker_id", "room__slug", "=room__id"]
|
||||
list_display = ("id", "status", "room", "created_at", "worker_id")
|
||||
list_filter = ["status", "room", "created_at"]
|
||||
readonly_fields = ["id", "created_at", "updated_at"]
|
||||
|
||||
Reference in New Issue
Block a user