{% extends "base.html" %} {% block title %}Setoran Hafalan{% endblock %} {% block page_title %}Setoran Hafalan{% endblock %} {% block content %}

Setoran Hafalan

Catat ketuntasan hafalan per ayat beserta hukum bacaan dan komentar.

Buat Setoran
{% if setoran_list %}
{% for setoran in setoran_list %}

{{ setoran.murid.name }}

{{ setoran.surah_name }} ayat {{ setoran.start_verse }}-{{ setoran.end_verse }}

{% if setoran.status == 'tuntas' %} Tuntas {% else %} Berjalan {% endif %}
{% set total = setoran.total_count %} {% set completed = setoran.completed_count %}
{{ completed }} dari {{ total }} ayat tuntas {% if setoran.five_ayat_completed_at %} 5 ayat tercapai {% endif %}

{{ setoran.created_at.strftime('%d/%m/%Y %H:%M') }}

{% endfor %}
{% else %}

Belum ada setoran hafalan.

{% endif %}
{% endblock %}