19:617cf0ab60ed
Anton Shestakov <av6@dwimlabs.net>, Wed, 15 Jun 2016 20:53:22 +0800
viewer: status.svg view

next change 23:9f9b68ad5068
previous change 16:784e5bd0fcba

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">
<tbody>
{% for check in checks %}
{% set project = check.project %}
{% set change = check.change %}
<tr>
<td>{{ check.errors }} error(s), {{ check.warnings }} warning(s)</td>
<td>#{{ check.ordinal }}</td>
<td>
<a href="/{{ project.domain }}/{{ project.user or '-' }}/{{ project.name }}">
{{ project.name }}
</a>
</td>
<td>{{ change.rev }}:{{ change.node[:12] }} {{ change.branch }}</td>
<td>{% module Time(value=check.started) %}</td>
<td>{% module Time(value=check.finished) %}</td>
<td>{{ check.finished - check.started }}</td>
</tr>
{% end %}
</tbody>
</table>
</div>
{% end %}