From bad2c02da10e85b733c9d6c9393ce3af8a45f64f Mon Sep 17 00:00:00 2001 From: team 1 Date: Mon, 16 Feb 2026 17:23:31 +0100 Subject: [PATCH] add new table values in admin docs and jobs --- templates/admin/document/index.html.twig | 5 ++++- templates/admin/system/agent_overview.html.twig | 7 +++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/templates/admin/document/index.html.twig b/templates/admin/document/index.html.twig index 499a125..3393a07 100644 --- a/templates/admin/document/index.html.twig +++ b/templates/admin/document/index.html.twig @@ -21,6 +21,7 @@ Titel + ID Typ Status Versionen @@ -32,13 +33,15 @@ {% for document in documents %} - {{ document.title }} + + {{ document.id }} + {% if document.currentVersion %} diff --git a/templates/admin/system/agent_overview.html.twig b/templates/admin/system/agent_overview.html.twig index b39b6ce..5fd93cb 100644 --- a/templates/admin/system/agent_overview.html.twig +++ b/templates/admin/system/agent_overview.html.twig @@ -96,14 +96,17 @@ chunk_id document_id - text (gekürzt) + Text (gekürzt) {% for item in ndjson.items|default([]) %} {{ item.chunk_id ?? '-' }} - {{ item.document_id ?? '-' }} + + {{ item.document_id ?? '-' }} + {% set text = item.text ?? '' %} {{ text|slice(0, 240) }}{% if text|length > 240 %}…{% endif %}