diff options
Diffstat (limited to 'guix-data-service/web/view')
-rw-r--r-- | guix-data-service/web/view/html.scm | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/guix-data-service/web/view/html.scm b/guix-data-service/web/view/html.scm index ebf2c20..d998c79 100644 --- a/guix-data-service/web/view/html.scm +++ b/guix-data-service/web/view/html.scm @@ -326,13 +326,15 @@ (@ (class "table")) (thead (tr - (th (@ (class "col-md-12")) "File Name"))) + (th (@ (class "col-md-8")) "File Name") + (th (@ (class "col-md-4")) "Build status"))) (tbody ,@(map (match-lambda - ((id file-name) + ((id file-name build-status) `(tr - (td ,file-name)))) + (td ,file-name) + (td ,build-status)))) base-derivations)))) (div (@ (class "row")) @@ -344,13 +346,15 @@ (@ (class "table")) (thead (tr - (th (@ (class "col-md-12")) "File Name"))) + (th (@ (class "col-md-8")) "File Name") + (th (@ (class "col-md-4")) "Build status"))) (tbody ,@(map (match-lambda - ((id file-name) + ((id file-name build-status) `(tr - (td ,file-name)))) + (td ,file-name) + (td ,build-status)))) target-derivations)))))))) (define (compare/packages base-commit |