298:7a103296a019
Anton Shestakov <av6@dwimlabs.net>, Wed, 20 Sep 2017 11:25:26 +0800
viewer: use two columns for info lists on check page for small screens too Since lists themselves switch to one column on small screens, there's enough space for both of them side by side.

previous change 264:291cb12f5f10

templates/project.html

Permissions: -rw-r--r--

Other formats: Feeds:
{% extends "base.html" %}
{% block title %}{{ project.name }}{% end %}
{% block alternate %}
<link rel="alternate" href="{{ project.get_url() }}/atom" type="application/atom+xml" title="{{ project.name }} feed">
{% end %}
{% block content %}
<div class="uk-container uk-container-center uk-margin-large-top">
<h2>{% module Template('ui/project-link.html', project=project) %}</h2>
<img src="{{ project.get_url() }}/status.svg" alt="Lint Status">
{% include ui/codes.html %}
<dl class="uk-description-list-horizontal list-terse">
<dt>Clone URL:</dt>
<dd>
{{ project.url }}
{% if project.url.startswith(('http:', 'https:')) %}
<a href="{{ project.url }}"><i class="uk-icon-external-link"></i></a>
{% end %}
</dd>
{% set last = checks.first() %}
{% if last %}
<dt>Last check:</dt>
<dd>
{% module Time(last.finished) %}
<a href="{{ project.get_url() }}/atom"><i class="uk-icon-rss-square"></i></a>
</dd>
{% end %}
</dl>
<table class="uk-table uk-table-middle uk-text-nowrap">
<tbody>
{% set paged_checks = handler.paginate(checks) %}
{% for check in paged_checks.iterator() %}
{% set change = check.change %}
{% set adapter = project.get_adapter() %}
<tr>
<td class="uk-text-right">{% module Badges(check) %}</td>
<td><a href="{{ project.get_url() }}/{{ check.ordinal }}">check #{{ check.ordinal }}</a></td>
<td><a href="{{ adapter.get_branch_url(change) }}">{{ change.branch }}</a></td>
<td><a href="{{ adapter.get_commit_url(change) }}">{% if change.rev is not None %}{{ change.rev }}:{% end %}{{ change.node[:12] }}</a></td>
<td class="uk-width-1-1">
<div class="wrap-normal">{{ change.message }}</div>
<div>{{ change.author }}, {% module Time(change.date, False) %}</div>
</td>
<td>{% module Time(check.finished) %}</td>
<td>{{ check.get_duration() }}</td>
</tr>
{% end %}
</tbody>
</table>
{% if paged_checks.pages > 1 %}
{% module Pagination(paged_checks.page, paged_checks.pages) %}
{% end %}
</div>
{% end %}