summaryrefslogtreecommitdiff
path: root/report/templates/index.html
blob: 9e59d8a2d480d68484155bc0a0b018a731a72409 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<div align="center">
Builds Info

<div> TODO:
<ul>
<table>
<tr>
<td align="left">
<li>Resubmit faild jobs(not submitted/running jobs) with one link</li>
<li>Trigger ci builds manually or according schedule</li>
<li>Test any change on local manifest or via patchset script</li>
<li>Trend Chart for builds</li>
<li>Color job status</li>
<li>Settings via admin and database</li>
<li>Permission settings</li>
<li>Login implementation</li>
</td>
</tr>
</div>
<table border=2>
<tr>
<tr/>
<tr>
    <th align="left">Build Names</th>
    {% for build_name, build_info in builds.items %}
    <td>{{ build_info.build_name }} </td>
    {% endfor %}
<tr/>
<tr>
    <th align="left">Android Version</th>
    {% for build_name, build_info in builds.items %}
    <td>{{ build_info.android_version }} </td>
    {% endfor %}
<tr/>
<tr>
    <th align="left">Kernel Version</th>
    {% for build_name, build_info in builds.items %}
    <td>{{ build_info.kernel_version }} </td>
    {% endfor %}
<tr/>
<tr>
    <th align="left">CI Link</th>
    {% for build_name, build_info in builds.items %}
    <td><a href="{{ build_info.ci_link }}">{{ build_info.build_name }}</a> </td>
    {% endfor %}
<tr/>
<tr>
    <th align="left">Android Build Config</th>
    {% for build_name, build_info in builds.items %}
    <td><a href="{{ build_info.android_build_config_link }}"> {{ build_info.build_name }} </a> </td>
    {% endfor %}
<tr/>
<tr>
    <th align="left">Snapshot URL</th>
    {% for build_name, build_info in builds.items %}
    <td><a href="{{ build_info.snapshot_url }}">{{ build_info.build_name }} </a> </td>
    {% endfor %}
<tr/>
<tr>
    <th align="left">Job Status</th>
    {% for build_name, build_info in builds.items %}
    <td><a href="/report/jobs/?build_name={{ build_info.build_name }}"> Jobs Status </a></td>
    {% endfor %}
</tr>
<tr>
    <th align="left">Checklist</th>
    {% for build_name, build_info in builds.items %}
    <td><a href="/report/checklist/?build_name={{ build_info.build_name }}"> CheckList </a></td>
    {% endfor %}
</tr>
<tr>
    <th align="left">Result Compare</th>
    {% for build_name, build_info in builds.items %}
    <td><a href="/report/compare/?build_name={{ build_info.build_name }}"> Result Compare </a></td>
    {% endfor %}
</tr>
<tr>
    <th align="left">Job Submission</th>
    {% for build_name, build_info in builds.items %}
    <td><a href="/report/submit-jobs/?build_name={{ build_info.build_name }}"> Job Submission </a></td>
    {% endfor %}
</tr>
<tr>
    <th align="left">Trigger Build</th>
    {% for build_name, build_info in builds.items %}
    <td><a href="{{ build_info.ci_link }}">{{ build_info.build_name }}</a> </td>
    {% endfor %}
</tr>
</table>
</div>