|
21 | 21 | <table class="table table-striped history-report">
|
22 | 22 | <thead>
|
23 | 23 | <tr>
|
24 |
| - <th class="right">Total</th> |
25 |
| - <th class="right">Invalid</th> |
26 |
| - <th class="right">Fatal</th> |
27 |
| - <th class="right">Error</th> |
28 |
| - <th class="right">Warning</th> |
29 | 24 | <th class="right">No problem</th>
|
| 25 | + <th class="right">Warning</th> |
| 26 | + <th class="right">Error</th> |
| 27 | + <th class="right">Fatal</th> |
30 | 28 | <th class="right">In progress</th>
|
| 29 | + <th class="right">Total</th> |
| 30 | + <th class="right">Invalid</th> |
31 | 31 | <th class="center">Start time</th>
|
32 | 32 | <th class="center">End time</th>
|
33 | 33 | <th class="left">Owner</th>
|
|
37 | 37 | <tbody>
|
38 | 38 | {% for run in history %}
|
39 | 39 | <tr>
|
40 |
| - <td class="right">{{run.total}}</td> |
41 |
| - <td class="right">{{run.invalid}}</td> |
42 |
| - <td class="right">{{run.fatal}}</td> |
43 |
| - <td class="right">{{run.error}}</td> |
44 |
| - <td class="right">{{run.warning}}</td> |
45 | 40 | <td class="right">{{run.no_problem}}</td>
|
| 41 | + <td class="right">{{run.warning}}</td> |
| 42 | + <td class="right">{{run.error}}</td> |
| 43 | + <td class="right">{{run.fatal}}</td> |
46 | 44 | <td class="right">{{run.in_progress}}</td>
|
| 45 | + <td class="right">{{run.total}}</td> |
| 46 | + <td class="right">{{run.invalid}}</td> |
47 | 47 | <td class="center">{{run.start_time}}</td>
|
48 |
| - <td class="center">{{run.end_time}}</td> |
| 48 | + <td class="center">{% if run.end_time %} {{run.end_time}} {% else %} <em>ongoing</em> {% endif %}</td> |
49 | 49 | <td class="left">{{run.owner}}</td>
|
50 | 50 | <td class="left">{{run.description}}</td>
|
51 | 51 | </tr>
|
52 | 52 | {% endfor %}
|
53 | 53 | </tbody>
|
54 | 54 | </table>
|
| 55 | + <div class="text-left""> |
| 56 | + <span class=" history-footnote">Note: <strong>invalid</strong> counts are not included in <strong>total</strong>, |
| 57 | + and do not |
| 58 | + play part in any ratios.</span><br> |
| 59 | + <span class="history-footnote">Note: <strong>in_progress</strong> counts are included, and are non-zero when a |
| 60 | + new rerun was started before the reported run was completed. |
| 61 | + </span><br> |
| 62 | + </div> |
55 | 63 | </div>
|
56 | 64 | </div>
|
57 | 65 | </div>
|
|
0 commit comments