{% extends "base.html" %} {% block content %}

All cards

{% for i, (card, status) in enumerated %} {% endfor %}
# Front Back Status
{{ i + 1 }} {{ card.front[:80] }}{% if card.front | length > 80 %}…{% endif %} {{ card.back[:80] }}{% if card.back | length > 80 %}…{% endif %} {{ status }} View
{% if total_pages > 1 %}
{% if page > 0 %} ← Prev {% endif %} Page {{ page + 1 }} of {{ total_pages }} {% if page + 1 < total_pages %} Next → {% endif %}
{% endif %} {% endblock %}