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 244:62252030324f

templates/atom.xml

Permissions: -rw-r--r--

Other formats: Feeds:
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<icon>{{ request.protocol }}://{{ request.host }}/static/favicon-cat.png</icon>
<title>{{ project.name }} feed</title>
<id>{{ project.get_url(request) }}/atom</id>
<link href="{{ project.get_url(request) }}/atom" rel="self"/>
<link href="{{ project.get_url(request) }}"/>
{% set last = checks.first() %}
{% if last %}
<updated>{{ last.finished.isoformat() }}Z</updated>
{% else %}
<updated>1970-01-01T08:00:00</updated>
{% end %}
{% for check in checks.limit(20) %}
<entry>
<title>Check #{{ check.ordinal }}: {{ status(check) }}</title>
<id>{{ project.get_url(request) }}/{{ check.ordinal }}</id>
<link href="{{ project.get_url(request) }}/{{ check.ordinal }}"/>
<updated>{{ check.finished.isoformat() }}Z</updated>
</entry>
{% end %}
</feed>