{% extends "report-base.html.jinja" %} {% block title %}Recipe Report{% endblock %} {% block content %} {% for recipe in recipes|sort %} {% endfor %} {% for machine, data in data|dictsort %} {% for recipe in recipes|sort %} {% if recipe in data %} {% set details = data[recipe] %} {% else %} {% endif %} {% endfor %} {% endfor %}
Machine{{ recipe }} ({{releases[recipe]|default("?")}})
{{ machine }} {{ details.recipe if details.recipe != recipe}} {{ details.version }} {% if details.patches or details.needs_update %}
{% if details.patches %} {% trans count=details.patches|length %} {{ count }} Patch {% pluralize %} {{ count }} Patches {% endtrans %} {% endif %} {% if details.needs_update %} Upgrade {% endif %} {% endif %}
-
{% endblock %}