blob: 9d0484535dd4dad3f8eb55f0db2c961c9dfa3dce (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
{% extends "base.html" %}
{% block heading %}
Recent Invocations
{% endblock %}
{% block content %}
{% if filter_info %}
<h1>Invocations filtered by {{ filter_info | e }}</h1>
{% else %}
<h1>Recent Invocations</h1>
{% endif %}
{% if invocations %}
<ul>
{% for invocation in invocations %}
<li> <a href="/invocations/{{invocation.name |e}}"><tt>{{ invocation.name | e }}</tt></a>
{% if invocation.subcommand %}
<tt>{{ invocation.subcommand | e }}</tt>
{% endif %}
{% if invocation.target %}
<tt>{{ invocation.target | e}}</tt>
{% endif %}
{% if invocation.exit_code != 0 %}
<b>
{% if invocation.exit_code == 1 %}
build failed
{% elif invocation.exit_code == 2 %}
failed
{% elif invocation.exit_code == 8 %}
analysis failure
{% elif invocation.exit_code == 16 %}
build-environment failure
{% elif invocation.exit_code == 32 %}
syntax/invocation error
{% else %}
exit code {{ invocation.exit_code | e }}
{% endif %}
</b>
{% endif %}
<ul>
{% if invocation.remote_address %}
<li>
Remote: <tt>{{ invocation.remote_address | e }}@{{ invocation.remote_props | e }}</tt>
</li>
{% endif %}
{% if invocation.config %}
<li>
Configuration: <tt>{{ invocation.config | e}}</tt>
</li>
{% endif %}
</ul>
</li>
{% endfor %}
</ul>
{% else %}
<i>(none)</i>
{% endif %}
{% endblock %}
|