{# Action Inbox — time-aware actionable signals. Lazy-loaded fragment served from /portfolio/inbox. Re-rendered after each dismissal POST. Items already arrive in display order. #} {% set urgent_count = items | selectattr('severity.value', 'equalto', 'urgent') | list | length %} {% set watch_count = items | selectattr('severity.value', 'equalto', 'watch') | list | length %} {% set total = items | length %}
Action Inbox {% if total > 0 %} {{ total }} {% endif %} {% if urgent_count > 0 %} {{ urgent_count }} urgent {% endif %} {% if watch_count > 0 %} {{ watch_count }} watch {% endif %}
{% if total == 0 %}
Nothing to act on right now.
{% else %} {% set sections = [ ('urgent', 'Urgent', 'var(--color-neg)'), ('watch', 'Watch', 'var(--color-warn)'), ('info', 'Info', 'var(--color-info)'), ] %} {% for sev, label, sev_color in sections %} {% set rows = items | selectattr('severity.value', 'equalto', sev) | list %} {% if rows %}
{{ label }}
{% for it in rows %}
{{ it.title }} {% if it.dollar_impact is not none %} ${{ '{:,.0f}'.format(it.dollar_impact) }} {% endif %}
{{ it.subtitle }}
{{ it.event_date.isoformat() }}
{% endfor %}
{% endif %} {% endfor %} {% endif %}