diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2018-11-07 14:20:29 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2018-11-07 15:28:05 +0100 |
| commit | 74436dae50a87828c4986c7cd91a290936c50771 (patch) | |
| tree | 069c5ec18c23622952071a4a6658101d324ade80 | |
| parent | templates: Display a finish time only for completed builds. (diff) | |
| download | cuirass-74436dae50a87828c4986c7cd91a290936c50771.tar.gz | |
templates: Adjust build table headers.
* src/cuirass/templates.scm (build-eval-table)[table-header]: Change
"Nixname" to "Name" and "Finished at" to "Completion time". Use strings
for each header.
| -rw-r--r-- | src/cuirass/templates.scm | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/cuirass/templates.scm b/src/cuirass/templates.scm index 119b5fb..dde0145 100644 --- a/src/cuirass/templates.scm +++ b/src/cuirass/templates.scm @@ -1,5 +1,6 @@ ;;; templates.scm -- HTTP API ;;; Copyright © 2018 Tatiana Sholokhova <tanja201396@gmail.com> +;;; Copyright © 2018 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of Cuirass. ;;; @@ -189,13 +190,13 @@ and BUILD-MAX are global minimal and maximal (stoptime, rowid) pairs." `(thead (tr (th (@ (scope "col")) '()) - (th (@ (scope "col")) ID) - (th (@ (scope "col")) Specification) - (th (@ (scope "col")) "Finished at") - (th (@ (scope "col")) Job) - (th (@ (scope "col")) Nixname) - (th (@ (scope "col")) System) - (th (@ (scope "col")) Log)))) + (th (@ (scope "col")) "ID") + (th (@ (scope "col")) "Specification") + (th (@ (scope "col")) "Completion time") + (th (@ (scope "col")) "Job") + (th (@ (scope "col")) "Name") + (th (@ (scope "col")) "System") + (th (@ (scope "col")) "Log")))) (define (table-row build) (define status |
