From 8e59e3f6139f203df841068924313f977c02098a Mon Sep 17 00:00:00 2001 From: Alex Iribarren Date: Wed, 12 Jan 2022 15:57:53 +0100 Subject: [PATCH] Show total builds and add two more date options --- www/kojiweb/buildsbystatus.chtml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/www/kojiweb/buildsbystatus.chtml b/www/kojiweb/buildsbystatus.chtml index be7b6cb5..5d23cacf 100644 --- a/www/kojiweb/buildsbystatus.chtml +++ b/www/kojiweb/buildsbystatus.chtml @@ -7,6 +7,8 @@ #end def +#set $numTotal = $numSucceeded + $numFailed + $numCanceled + #include "includes/header.chtml"

Succeeded/Failed/Canceled Builds#if $days != -1 then ' in the last %i days' % $days else ''#

@@ -25,6 +27,8 @@ $printOption(60) $printOption(90) $printOption(120) + $printOption(180) + $printOption(365) $printOption(-1, 'all') days @@ -50,6 +54,11 @@ graph row $numCanceled + + Total + + $numTotal + #include "includes/footer.chtml"