Chris@0: {# Chris@0: /** Chris@0: * @file Chris@0: * Default theme implementation for the last time update data was checked. Chris@0: * Chris@0: * Available variables: Chris@0: * - last: The timestamp that the site was last checked for updates. Chris@0: * - time: The formatted time since the site last checked for updates. Chris@0: * - link: A link to check for updates manually. Chris@0: * Chris@0: * @see template_preprocess_update_last_check() Chris@0: * Chris@0: * @ingroup themeable Chris@0: */ Chris@0: #} Chris@0:
Chris@0: {% if last %} Chris@0: {{ 'Last checked: @time ago'|t({'@time': time}) }} Chris@0: {% else %} Chris@0: {{ 'Last checked: never'|t }} Chris@0: {% endif %} Chris@0: ({{ link }}) Chris@0: