✨(backend) add recording mode column to the list display
While helping users, it was such a pain to determine quickly which recording was indeed a transcription or a video recording. Added the column to help me, and support team. The recording / transcription is the most unstable part of the project.
This commit is contained in:
committed by
aleb_the_flash
parent
2f7b56f918
commit
315d48a501
@@ -181,7 +181,15 @@ class RecordingAdmin(admin.ModelAdmin):
|
||||
|
||||
inlines = (RecordingAccessInline,)
|
||||
search_fields = ["status", "=id", "worker_id", "room__slug", "=room__id"]
|
||||
list_display = ("id", "status", "room", "get_owner", "created_at", "worker_id")
|
||||
list_display = (
|
||||
"id",
|
||||
"status",
|
||||
"mode",
|
||||
"room",
|
||||
"get_owner",
|
||||
"created_at",
|
||||
"worker_id",
|
||||
)
|
||||
list_filter = ["status", "room", "created_at"]
|
||||
readonly_fields = ["id", "created_at", "updated_at"]
|
||||
actions = [resend_notification]
|
||||
|
||||
Reference in New Issue
Block a user