-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html.jinja
67 lines (50 loc) · 1.26 KB
/
index.html.jinja
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
58
59
60
61
62
63
64
65
66
67
<html>
<h1>Eventuate development status</h1>
<table>
<tr>
<th>
Project
</th>
<th>
master
</th>
<th>
-
</th>
{% for branch in branches %}
<th>
{{ branch }}
</th>
{% endfor %}
</tr>
{% for project in projects %}
{% if project.path is defined %}
{% set projectPath = project.path %}
{% else %}
{% set projectPath = project %}
{% endif %}
<tr>
<td>
<a target="_blank" href="https://github.com/{{ projectPath }}">{{ projectPath }}</a>
</td>
<td>
<a target="_blank" href="https://circleci.com/gh/{{ projectPath }}"><img src="https://circleci.com/gh/{{ projectPath }}.svg?style=svg"></a>
</td>
<td>
<a target="_blank" href="https://github.com/{{ projectPath }}/pulls"><img src="https://img.shields.io/github/issues-pr/{{ projectPath }}"></a>
</td>
{% for branch in branches %}
{% if project[branch] is defined %}
<td>
<a target="_blank" href="https://circleci.com/gh/{{ projectPath }}/tree/{{branch}}"><img src="https://circleci.com/gh/{{ projectPath }}/tree/{{branch}}.svg?style=svg"></a>
</td>
{% else %}
<td>
-
</td>
{% endif %}
{% endfor %}
</tr>
{% endfor %}
</table>
</html>