101:bb31b74cc331
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.

next change 102:c5bfc491a942
previous change 85:aafbc75a40ac

templates/index.html

Permissions: -rw-r--r--

Other formats: Feeds:
{% extends "base.html" %}
{% block title %}Recently checked projects{% end %}
{% block content %}
<div class="uk-container uk-container-center uk-margin-large-top">
<h2>Recently checked projects</h2>
<table class="uk-table uk-table-middle uk-text-nowrap">
<tbody>
{% for check in checks %}
{% set project = check.project %}
{% set change = check.change %}
<tr>
<td>{% module Badges(check) %}</td>
<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.finished) %}</td>
<td>{{ check.get_duration() }}</td>
</tr>
{% end %}
</tbody>
</table>
</div>
{% end %}