| {% extends "report-base.html.jinja" %} |
| {% block title %}Recipe Report{% endblock %} |
| <table class="table is-striped"> |
| {% for recipe in recipes|sort %} |
| <th>{{ recipe }} ({{releases[recipe]|default("?")}})</th> |
| {% for machine, data in data|dictsort %} |
| <th><a href="{{machine}}.html">{{ machine }}</a></th> |
| {% for recipe in recipes|sort %} |
| {% set details = data[recipe] %} |
| <td style="text-align: center"> |
| <a href="{{machine}}.html#recipe-{{details.recipe}}"> |
| {{ details.recipe if details.recipe != recipe}} |
| {% if details.patches or details.needs_update %} |
| <span class="tag {{ "is-info" if details.patches_safe else "is-danger" }}"> |
| {% trans count=details.patches|length %} |
| {% if details.needs_update %} |
| <span class="tag is-danger">Upgrade</span> |