Web: Drop some columns from build list
The newrev, node name, and end time are not as useful as the other
columns, and can be found by following links to the change or logs.
In the future, we can redesign the display so that the user can select
extra details for a change, but for now, improve the ability to
scan the results quickly by removing these less-used columns.
Change-Id: I17179178b5486101c9134f8684c6e69f35e1ea7c
diff --git a/zuul/web/static/builds.html b/zuul/web/static/builds.html
index 921c9e2..7b471f7 100644
--- a/zuul/web/static/builds.html
+++ b/zuul/web/static/builds.html
@@ -55,12 +55,9 @@
<th>Project</th>
<th>Pipeline</th>
<th>Change</th>
- <th>Newrev</th>
<th>Duration</th>
<th>Log url</th>
- <th>Node name</th>
<th>Start time</th>
- <th>End time</th>
<th>Result</th>
</tr>
</thead>
@@ -71,12 +68,9 @@
<td>{{ build.project }}</td>
<td>{{ build.pipeline }}</td>
<td><a href="{{ build.ref_url }}" target="_self">change</a></td>
- <td>{{ build.newrev }}</td>
<td>{{ build.duration }} seconds</td>
<td><a ng-if="build.log_url" href="{{ build.log_url }}" target="_self">logs</a></td>
- <td>{{ build.node_name }}</td>
<td>{{ build.start_time }}</td>
- <td>{{ build.end_time }}</td>
<td>{{ build.result }}</td>
</tr>
</tbody>