{% comment %} Attention feed. Every section builds the same shape of item so the three dashboards read identically: severity, when, where, what, detail. {% endcomment %} {% load i18n holdfast_tags %} {% if not items %}
{% translate "All clear" %}
{{ empty_message|default:_("Nothing here wants attention right now.") }}
{% else %}
{% for item in items %}
{% if item.when %}
{{ item.when|relative_moment }}
{{ item.when|date:"m-d H:i" }} EVE
{% else %}—{% endif %}
{% if item.system %} {{ item.where }} {% else %} {{ item.where }} {% endif %}  · {{ item.kind }} {% if item.detail %}
{{ item.detail }}
{% endif %}
{% if item.url %}
{% translate "Open" %}
{% endif %}
{% endfor %}
{% endif %}