{% comment %} "Action Required" home dashboard panel — top contracts needing attention. Context: action_required: list of (contract, priority_tier) tuples, capped at 5. Tier strings: "urgent", "warning", "info" — match priority module constants. {% endcomment %} {% if perms.nautobot_contract_models.view_contract %} {% if action_required %} {% for contract, tier in action_required %}
{{ contract.name }} {% if tier == "urgent" %} Urgent {% elif tier == "warning" %} Warning {% else %} Heads up {% endif %}
{{ contract.provider.name }} · expires {{ contract.end_date|date:"SHORT_DATE_FORMAT" }} {% if contract.auto_renew %} · auto-renew{% endif %}
{% endfor %}
View all action items →
{% else %}
Nothing requires action right now.
{% endif %} {% else %}
No permission
{% endif %}