{% extends "base.html" %} {% block title %}Detail Import Nilai{% endblock %} {% block page_title %}Detail Import Nilai{% endblock %} {% block content %}
Kembali ke Import

{{ batch.filename }}

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

{% if not batch.is_rolled_back %}
{% else %} Sudah rollback {{ batch.rolled_back_at.strftime('%d/%m/%Y %H:%M') if batch.rolled_back_at else '' }} {% endif %}

Total

{{ batch.total_rows }}

Baru

{{ batch.created_count }}

Update

{{ batch.updated_count }}

Skip

{{ batch.skipped_count }}

{% for row in rows %} {% endfor %}
Baris Status Murid Kelas/Mapel Surat/Ayat Nilai Keterangan
{{ row.row_number }} {% if row.status == 'success' %} {{ row.action }} {% else %} skip {% endif %} {{ row.murid_name or '-' }} {{ row.kelas_name or '-' }}
{{ row.mapel_name or '-' }}
{{ row.surah_name or '-' }}
{{ row.ayat or '-' }}
{{ row.score if row.score is not none else '-' }} {{ row.message or row.description or '-' }}
{% endblock %}