Anton Shestakov <av6@dwimlabs.net>, Sat, 25 Jun 2016 18:16:39 +0800
models: drop Check.raw field (not worth storing in the same table)
Replaying checks can be done (and is easier) when storing checker output in
plain files, so let's lighten up the load on the database.
templates/project.html
Permissions: -rw-r--r--
{% extends "base.html" %} {% block title %}{{ project.get_title() }}{% end %} <div class="uk-container uk-container-center uk-margin-large-top"> <h2><a href="{{ project.get_url() }}">{{ project.get_title() }}</a></h2> <img src="{{ project.get_url() }}/status.svg" alt="Lint Status"> <dl class="uk-description-list-horizontal list-terse"> <dd>{% module Time(checks[0].finished) %}</dd> <dd>{{ project.url }}</dd> <table class="uk-table uk-table-middle"> {% for check in checks %} {% set change = check.change %} <td class="uk-text-nowrap">{% module Badges(check) %}</td> <td><a href="{{ check.get_url() }}">#
{{ check.ordinal }}</a></td> <td>{{ change.rev }}:
{{ change.node[:12] }} {{ change.branch }}</td> <div>{{ change.message }}</div> <div>{{ change.author }},
<time>{{ change.date }}</time></div> <td>{% module Time(check.started) %}</td> <td>{% module Time(check.finished) %}</td> <td>{{ check.get_duration() }}</td>