Anton Shestakov <av6@dwimlabs.net>, Sun, 03 Jul 2016 23:00:17 +0800
checker: check before using config['url']
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 uk-text-nowrap"> {% for check in checks %} {% set project = check.project %} {% set change = check.change %} <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.started) %}</td> <td>{% module Time(check.finished) %}</td> <td>{{ check.get_duration() }}</td>