{% extends "base.html" %} {% block content %}
Card {{ index + 1 }} of {{ total }} {{ status }}

Front

{{ card.front }}

{% if not card.is_cloze and card.back %}

Back

{{ card.back }}

{% endif %} {% if card.tags %}

Tags: {{ card.tags | join(", ") }}

{% endif %}
{# Action buttons #}
{% set prev = index - 1 %} {% if prev >= 0 %} ← Prev [ {% endif %} {% set nxt = index + 1 %} {% if nxt < total %} Next → ] {% endif %}
{# Inline edit form (hidden by default) #} {% endblock %}