{% extends "base.html" %} {% block title %}{{ business['name'] }} — Good Standing{% endblock %} {% block content %} ← All businesses

{{ business['name'] }}

{{ business['industry'] }} · {{ business['state'] }}{% if business['formed_date'] %} · formed {{ business['formed_date'] }}{% endif %}

Compliance health

{{ health.score }}/100
{{ health.band|replace('-',' ') }}
Overdue{{ health.overdue }}
Due soon{{ health.due_soon }}
Upcoming{{ health.upcoming }}
Exposure now${{ health.exposure|comma }}
At risk soon${{ health.at_risk_soon|comma }}

Obligations

{% for o in obligations %}
{{ o.status|replace('_',' ') }}
{{ o.name }}
{{ o.authority }} · {{ o.category }}
{% if o.due %}Due {{ o.due }} — {{ o.label }}{% else %}{{ o.label }}{% endif %}
{% if o.exposure %}${{ o.penalty_amount|comma }} exposure {% elif o.penalty_amount %}${{ o.penalty_amount|comma }} penalty{% endif %}
{% endfor %}
{% endblock %}