{% extends 'Admin/admin.html.twig' %}
{% block title %}Gestion des traductions{% endblock %}
{% block body %}
Traductions – {{ currentLang|upper }}
{% if missingByType is defined and missingByType %}
—
Traductions manquantes :
{% for t in types %}
{% set c = missingByType[t] ?? 0 %}
{{ c }} {{ t }}{% if not loop.last %}, {% endif %}
{% endfor %}
{% endif %}