From b7ab79efefc6a29339346519801ac5dd0b487f12 Mon Sep 17 00:00:00 2001 From: Martin Filser Date: Sun, 10 Apr 2022 19:50:29 +0200 Subject: [PATCH] Admin Reports, more detailed column header + add boardId and cardId to table --- client/components/settings/adminReports.jade | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/client/components/settings/adminReports.jade b/client/components/settings/adminReports.jade index 452d2e1b9..961980b46 100644 --- a/client/components/settings/adminReports.jade +++ b/client/components/settings/adminReports.jade @@ -57,7 +57,7 @@ template(name="brokenCardsReport") template(name="rulesReport") h1 {{_ 'rulesReportTitle'}} if resultsCount - table.table + table tr th Rule Title th Board Title @@ -76,12 +76,14 @@ template(name="rulesReport") template(name="filesReport") h1 {{_ 'filesReportTitle'}} if resultsCount - table.table + table tr th Filename th.right Size (kB) th MIME Type - th ID + th Attachment ID + th Board ID + th Card ID each att in results tr @@ -89,6 +91,8 @@ template(name="filesReport") td.right {{fileSize att.size }} td {{ att.type }} td {{ att._id }} + td {{ att.meta.boardId }} + td {{ att.meta.cardId }} else div {{_ 'no-results' }}