X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fupdate%2Ftemplates%2Fupdate-report.html.twig;fp=web%2Fcore%2Fmodules%2Fupdate%2Ftemplates%2Fupdate-report.html.twig;h=ae121cc3b42430c3a230ac07525274e2b6fee703;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hp=0000000000000000000000000000000000000000;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad;p=yaffs-website diff --git a/web/core/modules/update/templates/update-report.html.twig b/web/core/modules/update/templates/update-report.html.twig new file mode 100644 index 000000000..ae121cc3b --- /dev/null +++ b/web/core/modules/update/templates/update-report.html.twig @@ -0,0 +1,25 @@ +{# +/** + * @file + * Default theme implementation 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() + * + * @ingroup themeable + */ +#} +{{ last_checked }} + +{% for project_type in project_types %} +

{{ project_type.label }}

+ {{ project_type.table }} +{% else %} +

{{ no_updates_message }}

+{% endfor %}