From a5f77438d0595be6d4b355a89f63185cef811f64 Mon Sep 17 00:00:00 2001 From: Jonathan Weth <git@jonathanweth.de> Date: Tue, 3 Aug 2021 21:07:58 +0200 Subject: [PATCH] Show filename in table for live documents --- aleksis/apps/resint/tables.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aleksis/apps/resint/tables.py b/aleksis/apps/resint/tables.py index a769e50..fda59f6 100644 --- a/aleksis/apps/resint/tables.py +++ b/aleksis/apps/resint/tables.py @@ -11,6 +11,7 @@ class LiveDocumentTable(Table): document_name = Column(accessor="pk") name = LinkColumn("edit_live_document", args=[A("id")]) + filename = LinkColumn("show_live_document", args=[A("slug")]) edit = LinkColumn( "edit_live_document", args=[A("id")], -- GitLab