diff options
author | Christopher Baines <mail@cbaines.net> | 2019-07-22 21:11:09 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-07-22 21:11:09 +0100 |
commit | 7f8ffb4beaf25b02bea601b2a42cea1dc8720e0a (patch) | |
tree | 3f09b279c06df3caf87f52720cc5cfddffdc61c7 /guix-data-service/web | |
parent | 05db0a87f92dbc705d0f9285becff22a2ffdc887 (diff) | |
download | data-service-7f8ffb4beaf25b02bea601b2a42cea1dc8720e0a.tar data-service-7f8ffb4beaf25b02bea601b2a42cea1dc8720e0a.tar.gz |
Show links to the cgit pages for repositories on the index page
Diffstat (limited to 'guix-data-service/web')
-rw-r--r-- | guix-data-service/web/view/html.scm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/guix-data-service/web/view/html.scm b/guix-data-service/web/view/html.scm index a126f4d..8773d73 100644 --- a/guix-data-service/web/view/html.scm +++ b/guix-data-service/web/view/html.scm @@ -233,12 +233,18 @@ (h1 "Guix Data Service"))) ,@(map (match-lambda - (((repository-id label url) . branches-with-most-recent-commits) + (((repository-id label url cgit-url-base) . branches-with-most-recent-commits) `(div (@ (class "row")) (div (@ (class "col-sm-12")) - (h3 ,url) + (h3 (@ (style "display: inline-block;")) + ,url) + ,@(if (string-null? cgit-url-base) + '() + `((a (@ (style "padding-left: 0.8em;") + (href ,cgit-url-base)) + "(View cgit)"))) ,(if (null? branches-with-most-recent-commits) '(p "No branches") (table/branches-with-most-recent-commits |