Chris@0: {# Chris@0: /** Chris@0: * @file Chris@0: * Default theme implementation for the project status report. Chris@0: * Chris@0: * Available variables: Chris@0: * - last_checked: Themed last time update data was checked. Chris@0: * - no_updates_message: Message when there are no project updates. Chris@0: * - project_types: A list of project types. Chris@0: * - label: The project type label. Chris@0: * - table: The project status table. Chris@0: * Chris@0: * @see template_preprocess_update_report() Chris@0: * Chris@0: * @ingroup themeable Chris@0: */ Chris@0: #} Chris@0: {{ last_checked }} Chris@0: Chris@0: {% for project_type in project_types %} Chris@0:

{{ project_type.label }}

Chris@0: {{ project_type.table }} Chris@0: {% else %} Chris@0:

{{ no_updates_message }}

Chris@0: {% endfor %}