Anton Shestakov <av6@dwimlabs.net>, Wed, 15 Jun 2016 21:35:22 +0800
incoming: use absolute imports
templates/index.html
Permissions: -rw-r--r--
{% extends "base.html" %} {% block title %}Recently checked projects
{% end %} <div class="uk-container uk-container-center uk-margin-large-top"> <h2>Recently checked projects
</h2> <table class="uk-table uk-table-middle"> {% for check in checks %} {% set project = check.project %} {% set change = check.change %} <td>{{ check.errors }} error(s),
{{ check.warnings }} warning(s)
</td> <td>#
{{ check.ordinal }}</td> <a href="/{{ project.domain }}/{{ project.user or '-' }}/{{ project.name }}"> <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>