diff --git a/src/root/common.tt b/src/root/common.tt
index 280d37928..58e3bf4e2 100644
--- a/src/root/common.tt
+++ b/src/root/common.tt
@@ -98,8 +98,8 @@ BLOCK renderBuildListBody;
[% INCLUDE renderFullJobNameOfBuild %] |
[% END %]
[% !showSchedulingInfo and build.get_column('releasename') ? build.get_column('releasename') : build.nixname %] |
- [% build.system %] |
- [% date.format(showSchedulingInfo ? build.timestamp : build.stoptime, '%Y-%m-%d %H:%M:%S') %] |
+ [% build.system %] |
+ [% date.format(showSchedulingInfo ? build.timestamp : build.stoptime, '%Y-%m-%d %H:%M:%S') %] |
[% IF showStatusChange %]
[% IF build.get_column('statusChangeTime') %]
@@ -415,7 +415,7 @@ BLOCK renderEvals %]
| [% INCLUDE renderFullJobsetName project=eval.get_column('project') jobset=eval.get_column('jobset') %] |
[% END %]
[% eval.id %] |
- [% INCLUDE renderDateTime timestamp = eval.timestamp %] |
+ [% INCLUDE renderDateTime timestamp = eval.timestamp %] |
[% IF e.changedInputs.size > 0;
sep='';
@@ -427,14 +427,14 @@ BLOCK renderEvals %]
-
[% END %]
|
-
+ |
[% e.nrSucceeded %]
[% e.nrFailed %]
[% IF e.nrScheduled > 0 %]
[% e.nrScheduled %]
[% END %]
|
-
+ |
[% IF e.diff > 0 %]
+[% e.diff %]
[% ELSIF e.diff < 0 && e.nrScheduled == 0 %]
diff --git a/src/root/static/css/hydra.css b/src/root/static/css/hydra.css
index 1e27a9d1c..f3a24f183 100644
--- a/src/root/static/css/hydra.css
+++ b/src/root/static/css/hydra.css
@@ -87,3 +87,7 @@ div.page-header h1 small {
div.news-item:not(:first-child) {
margin-top: 1em;
}
+
+td.nowrap {
+ white-space: nowrap;
+}
|