Mercurial > hg > isophonics-drupal-site
view core/modules/update/templates/update-last-check.html.twig @ 9:1fc0ff908d1f
Add another data file
author | Chris Cannam |
---|---|
date | Mon, 05 Feb 2018 12:34:32 +0000 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
{# /** * @file * Default theme implementation for the last time update data was checked. * * Available variables: * - last: The timestamp that the site was last checked for updates. * - time: The formatted time since the site last checked for updates. * - link: A link to check for updates manually. * * @see template_preprocess_update_last_check() * * @ingroup themeable */ #} <p> {% if last %} {{ 'Last checked: @time ago'|t({'@time': time}) }} {% else %} {{ 'Last checked: never'|t }} {% endif %} ({{ link }}) </p>