machine-summary-overview.txt.jinja 284 B

123456789101112
  1. Machine Overview
  2. Generated at {{ timestamp }}.
  3. {% for machine, data in data|dictsort %}
  4. MACHINE: {{ machine }}
  5. {% for recipe in recipes|sort %}
  6. {% if recipe in data %}
  7. {% set details = data[recipe] %}
  8. {{ details.recipe }}: {{ details.version }}
  9. {% endif %}
  10. {% endfor %}
  11. {% endfor %}