blob: bab67cd3a2dc1e768cb0f20dc1e10af2ab00698e (
plain)
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
35
|
{% extends "base.html" %}
{% block heading %}
Recent Invocations
{% endblock %}
{% block content %}
<h1>Recent Invocations</h1>
{% if invocations %}
<ul>
{% for invocation in invocations %}
<li> <a href="/invocations/{{invocation.name |e}}">{{ invocation.name | e }}</a>
{% if invocation.subcommand %}
{{ invocation.subcommand | e }}
{% endif %}
{% if invocation.target %}
<tt>{{ invocation.target | e}}@{{ invocation.config | e}}</tt>
{% endif %}
{% if invocation.exit_code != 0 %}
<b>
{% if invocation.exit_code == 1 %}
build failed
{% elif invocation.exit_code == 2 %}
failed
{% else %}
exit code {{ invocation.exit_code | e }}
{% endif %}
</b>
{% endif %}
</li>
{% endfor %}
</ul>
{% else %}
<i>(none)</i>
{% endif %}
{% endblock %}
|