From 315d48a501d986168305a4ed352016cc4c91ec3b Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Thu, 23 Oct 2025 05:06:13 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8(backend)=20add=20recording=20mode=20c?= =?UTF-8?q?olumn=20to=20the=20list=20display?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- src/backend/core/admin.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/backend/core/admin.py b/src/backend/core/admin.py index 38ee4310..ec45b602 100644 --- a/src/backend/core/admin.py +++ b/src/backend/core/admin.py @@ -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]