Anton Shestakov <av6@dwimlabs.net>, Mon, 04 Jul 2016 19:11:13 +0800
viewer: don't show check.started time in overview tables
Considering elapsed time for checks is below 1 minute, start time is not very
important. It still can be seen on check page.
--- a/templates/index.html Mon Jul 04 17:37:55 2016 +0800
+++ b/templates/index.html Mon Jul 04 19:11:13 2016 +0800
<td><a href="{{ check.get_url() }}">check #{{ check.ordinal }}</a></td>
<td><a href="{{ project.get_url() }}">{{ project.get_title() }}</a></td>
<td>{{ change.rev }}:{{ change.node[:12] }} {{ change.branch }}</td>
- <td>{% module Time(check.started) %}</td>
<td>{% module Time(check.finished) %}</td>
<td>{{ check.get_duration() }}</td>
--- a/templates/project.html Mon Jul 04 17:37:55 2016 +0800
+++ b/templates/project.html Mon Jul 04 19:11:13 2016 +0800
<div>{{ change.message }}</div>
<div>{{ change.author }}, {% module Time(change.date, False) %}</div>
- <td>{% module Time(check.started) %}</td>
<td>{% module Time(check.finished) %}</td>
<td>{{ check.get_duration() }}</td>