12345678910111213141516171819202122232425 |
- {#
- /**
- * @file
- * Theme override for the project status report.
- *
- * Available variables:
- * - last_checked: Themed last time update data was checked.
- * - no_updates_message: Message when there are no project updates.
- * - project_types: A list of project types.
- * - label: The project type label.
- * - table: The project status table.
- *
- * @see template_preprocess_update_report()
- */
- #}
- {{ last_checked }}
- {% for project_type in project_types %}
- <div class="update-wrapper">
- <h1 class="update">{{ project_type.label }}</h1>
- {{ project_type.table }}
- </div>
- {% else %}
- <p>{{ no_updates_message }}</p>
- {% endfor %}
|