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

{{ setoran.murid.name }}

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

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

{% if setoran.five_ayat_completed_at %} 5 ayat tuntas: {{ setoran.five_ayat_completed_at.strftime('%d/%m/%Y %H:%M') }} {% endif %} {% if setoran.completed_at %} Selesai: {{ setoran.completed_at.strftime('%d/%m/%Y %H:%M') }} {% endif %}
{% for item in items %}
{{ item.verse_key }} {% if item.completed_at %} Tuntas: {{ item.completed_at.strftime('%d/%m/%Y %H:%M') }} {% endif %}
{% if item.hukum_bacaan %}

{{ item.hukum_bacaan.name }}

{% endif %}

{{ item.verse_text or item.verse_key }}

{% endfor %}
{% endblock %}