update-report.html.twig 630 B

12345678910111213141516171819202122232425
  1. {#
  2. /**
  3. * @file
  4. * Theme override for the project status report.
  5. *
  6. * Available variables:
  7. * - last_checked: Themed last time update data was checked.
  8. * - no_updates_message: Message when there are no project updates.
  9. * - project_types: A list of project types.
  10. * - label: The project type label.
  11. * - table: The project status table.
  12. *
  13. * @see template_preprocess_update_report()
  14. */
  15. #}
  16. {{ last_checked }}
  17. {% for project_type in project_types %}
  18. <div class="update-wrapper">
  19. <h1 class="update">{{ project_type.label }}</h1>
  20. {{ project_type.table }}
  21. </div>
  22. {% else %}
  23. <p>{{ no_updates_message }}</p>
  24. {% endfor %}