{% extends "base.html" %} {% block title %}Nilai Saya{% endblock %} {% block page_title %}Nilai Saya{% endblock %} {% block content %}

Total: {{ total }} nilai tercatat

{% for mapel_name, nilai_list in grouped_nilai.items() %}

{{ mapel_name }}

Rata-rata: {{ "%.1f"|format(nilai_list|map(attribute='score')|list|sum / nilai_list|length) }}

{% for n in nilai_list %} {% endfor %}
Jenis Nilai Keterangan Tanggal
{{ n.type|upper }} {{ n.score }} {{ n.description or '-' }} {{ n.created_at.strftime('%d %b %Y') }}
{% endfor %} {% if not grouped_nilai %}

Belum ada nilai tercatat

{% endif %} {% endblock %}