sgd_dashboard-1.0.0-beta1/templates/sgd-watchdog-summary.html.twig
templates/sgd-watchdog-summary.html.twig
<h2>Watchdog Summary</h2>
{% for key, item in data | without('sgd_watchdog_summary') %}
<div class="system-status-report__row system-status-report__{{ key }}">
<div class="system-status-report__status-title" role="button">
{{ item.title }}
</div>
<div class="system-status-report__entry__value">
{% if key == 'sgd_watchdog_oldest' %}
{{ item.value | format_date('custom', 'dS M Y \\a\\t H:m:s') }}
{% else %}
{{ item.value }}
{% endif %}
<div class="description">{{ item.description }}</div>
</div>
</div>
{% endfor %}
{{ data.sgd_watchdog_summary }}