Backup of db before drupal security update
[yaffs-website] / web / core / modules / update / templates / update-report.html.twig
1 {#
2 /**
3  * @file
4  * Default theme implementation 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  * @ingroup themeable
16  */
17 #}
18 {{ last_checked }}
19
20 {% for project_type in project_types %}
21   <h3>{{ project_type.label }}</h3>
22   {{ project_type.table }}
23 {% else %}
24   <p>{{ no_updates_message }}</p>
25 {% endfor %}