{{ evaluation_type|title }} Evaluation Report
Generated on {{ generated_at }}
{{ data.score }}/100
{% if evaluation_type == 'lab' %}
{% if data.passed %}Passed ✓{% else %}Not Passed{% endif %}
{% endif %}
{% if data.feedback %}
Feedback
{{ data.feedback }}
{% endif %} {% if data.breakdown %}
Score Breakdown
{% for key, value in data.breakdown.items() %}
{{ key.replace('_', ' ')|title }}
{{ value }}
{% endfor %}
{% endif %} {% if data.must_mention_hits %}
Points Covered
{% for point in data.must_mention_hits %}
{{ point }}
{% endfor %}
{% endif %} {% if data.must_mention_misses %}
Points Missed
{% for point in data.must_mention_misses %}
{{ point }}
{% endfor %}
{% endif %} {% if data.bonus_hits %}
Bonus Points Earned
{% for point in data.bonus_hits %}
{{ point }}
{% endfor %}
{% endif %} {% if data.issues %}
Issues Found
{% for issue in data.issues %}
{{ issue }}
{% endfor %}
{% endif %} {% if data.improvements or data.recommendations %}
Suggestions for Improvement
{% for item in data.improvements or data.recommendations %}
{{ item }}
{% endfor %}
{% endif %} {% if data.files_analyzed %}
Files Analyzed
{% for file in data.files_analyzed %}
{{ file }}
{% endfor %}
{% endif %}