{% for locale, row in data.coverage.items() %}
{% set pct = row.coverage_pct|default(0) %}
{% set status = 'Good' if pct >= 95 else ('Warn' if pct >= 80 else 'Poor') %}
{% set band_class = 'ok' if pct >= 95 else ('warn' if pct >= 80 else 'bad') %}
{{ locale }}
{{ '%.2f'|format(pct) }}%
{{ row.missing_keys|default(0) }}
{{ row.orphan_keys|default(0) }}
{{ status }}
{% endfor %}
{% if data.validation_warnings and data.validation_warnings|length > 0 %}
Validation Warnings ({{ data.validation_warnings|length }})