/failed-builds: special case no failed builds

🥳
This commit is contained in:
Reynir Björnsson 2022-11-09 12:12:54 +01:00
parent a355b6124d
commit e9f6e1d577

View file

@ -943,15 +943,22 @@ let failed_builds ~start ~count builds =
] ]
in in
layout ~title:"Failed builds" layout ~title:"Failed builds"
([ (match builds with
H.h1 [H.txt "Failed builds"]; | [] ->
H.ul (List.map build builds); [
H.p [ txtf "View the next %d failed builds " count; H.h1 [H.txt "No failed builds to list"];
H.a ~a:H.[ H.p [H.txt "🥳"];
a_href @@ Link.Failed_builds.make ]
~count ~start:(start + count) () ] | _ :: _ ->
[ H.txt "here"]; [
H.txt "."; H.h1 [H.txt "Failed builds"];
] H.ul (List.map build builds);
]) H.p [ txtf "View the next %d failed builds " count;
H.a ~a:H.[
a_href @@ Link.Failed_builds.make
~count ~start:(start + count) () ]
[ H.txt "here"];
H.txt ".";
]
])