{% load i18n %}
| {% trans "Month" %} | Jan | Feb | Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec | {% trans "TOTAL" %} |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ report.numerator_label }} | {% for m in monthly_data %}{% if m %}{{ m.numerator }}{% else %}-{% endif %} | {% endfor %}{{ report.total_numerator }} | |||||||||||
| {{ report.denominator_label }} | {% for m in monthly_data %}{% if m %}{{ m.denominator }}{% else %}-{% endif %} | {% endfor %}{{ report.total_denominator }} | |||||||||||
| {% trans "Result %" %} | {% for m in monthly_data %}{% if m %}{{ m.percentage|floatformat:1 }}{% else %}-{% endif %} | {% endfor %}{{ report.overall_result|floatformat:1 }} | |||||||||||
| {% trans "Target" %} | {{ report.target_percentage|floatformat:0 }}% | {{ report.target_percentage|floatformat:0 }}% | |||||||||||
| {% trans "Threshold" %} | {{ report.threshold_percentage|floatformat:0 }}% | {{ report.threshold_percentage|floatformat:0 }}% | |||||||||||
{{ ai_analysis.executive_summary }}
{{ ai_analysis.performance_analysis }}
{{ ai_analysis.comparison_to_target }}