{% extends "base.html" %} {% block title %}Catatan Al-Quran{% endblock %} {% block page_title %}Catatan Al-Quran{% endblock %} {% block content %}

Catatan Saya

Catatan pribadi dari bacaan Al-Quran

{% if pagination.items %}
{% for note in pagination.items %}

{% set words = note.verse_text.split() %} {% for word in words %} {% if note.hukum_bacaan and note.word_position is not none and loop.index0 == note.word_position %} {{ word }} {% else %} {{ word }} {% endif %} {% endfor %}

{% if note.content %}

{{ note.content }}

{% endif %}

{{ note.created_at.strftime('%d %B %Y, %H:%M') }}

{% endfor %}
{% if pagination.pages > 1 %}

Halaman {{ pagination.page }} dari {{ pagination.pages }} ({{ pagination.total }} catatan)

{% if pagination.has_prev %} ← Sebelumnya {% endif %} {% if pagination.has_next %} Selanjutnya → {% endif %}
{% endif %} {% else %}

Belum Ada Catatan

Mulai membaca Al-Quran dan tap/klik kata manapun untuk menambahkan catatan pribadi.

Mulai Membaca Al-Quran
{% endif %} {% endblock %}