27:9fa79edc2e45
Anton Shestakov <av6@dwimlabs.net>, Thu, 16 Jun 2016 07:31:39 +0800
viewer: use new get_duration() method to format time taken by a check

next change 28:46b429c6500d
previous change 26:8c1ce7d12350

templates/project.html

Permissions: -rw-r--r--

Other formats: Feeds:
{% extends "base.html" %}
{% block title %}{{ project.name }}{% end %}
{% block content %}
<div class="uk-container uk-container-center uk-margin-large-top">
<h2>{{ project.name }}</h2>
<dl class="uk-description-list-horizontal list-terse">
<dt>Last check:</dt>
<dd>{% module Time(value=checks[0].finished) %}</dd>
<dt>Clone URL:</dt>
<dd>{{ project.url }}</dd>
</dl>
<table class="uk-table uk-table-middle">
<tbody>
{% for check in checks %}
{% set change = check.change %}
<tr>
<td>{% module Badges(check) %}</td>
<td><a href="{{ check.get_url() }}">#{{ check.ordinal }}</a></td>
<td>{{ change.rev }}:{{ change.node[:12] }} {{ change.branch }}</td>
<td>
<div>{{ change.message }}</div>
<div>{{ change.author }}, <time>{{ change.date }}</time></div>
</td>
<td>{% module Time(check.started) %}</td>
<td>{% module Time(check.finished) %}</td>
<td>{{ check.get_duration() }}</td>
</tr>
{% end %}
</tbody>
</table>
</div>
{% end %}