You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

build_report_table.html 235B

123456789101112
  1. <table class="sortable pane bigtable stripped-odd">
  2. <tr>
  3. <th>Toolchain</th>
  4. <th>Project</th>
  5. </tr>
  6. {% for run in build %}
  7. <tr>
  8. <td>{{run.toolchain}}</td>
  9. <td>{{run.project}}</td>
  10. </tr>
  11. {% endfor %}
  12. </table>