1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends "_base.html" %}
{% block title %}ci · {{ repo }}{% endblock %}
{% block nav %}
{% include "_nav.html" %}
{% endblock %}
{% block fullpage %}
<nav class="repo-section-nav">
{% include "_repo_section_nav.html" %}
</nav>
<div class="repo-body">
<article class="ci-run-list">
{% for run in runs %}
<div class="ci-run-row">
<span class="ci-status-dot {{ run.state_class() }}"></span>
<a class="ci-commit-link" href="/{{ repo }}/ci/{{ run.id }}">{{ run.sha_short() }}</a>
<span class="ci-run-branch">{{ run.branch_short() }}</span>
<span class="ci-run-age"><time title="{{ run.queued_iso() }}">{{ run.queued_relative() }}</time></span>
<span class="ci-run-dur">{{ run.duration_display() }}</span>
</div>
{% else %}
<p class="ci-empty">no runs yet</p>
{% endfor %}
</article>
</div>
{% endblock %}