branch: main
commit cc934ed00f620d1dfa61f29ef2e60c5d68137793
Author: Ludovic Courtès <l...@gnu.org>
AuthorDate: Fri May 24 14:27:40 2024 +0200

    templates: Evaluation row now includes a timestamp.
    
    * src/cuirass/templates.scm (evaluation-info-table): Show timestamp
    below the evaluation number.
---
 src/cuirass/templates.scm | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/src/cuirass/templates.scm b/src/cuirass/templates.scm
index 55bb652..4444a2f 100644
--- a/src/cuirass/templates.scm
+++ b/src/cuirass/templates.scm
@@ -1102,10 +1102,14 @@ NAME have been checked; it is #f when that information 
is unavailable."
               ,@(map
                  (lambda (summary)
                    `(tr (th (@ (scope "row"))
-                            (a (@ (href
-                                   "/eval/"
-                                   ,(build-summary-evaluation-id summary)))
-                               ,(build-summary-evaluation-id summary)))
+                            (div
+                             (a (@ (href
+                                    "/eval/"
+                                    ,(build-summary-evaluation-id summary)))
+                                ,(build-summary-evaluation-id summary))
+                             (div (@ (class "text-info text-left 
font-weight-normal"))
+                                  ,(time->string
+                                    (build-summary-timestamp summary)))))
                         (td ,(input-changes (build-summary-checkouts summary)))
                         (td
                          ,@(evaluation-badges summary

Reply via email to