{% extends "base.html" %} {% block title %}{% if abono %}Editar abono{{ abono.numero }}{% else %}Nuevo abono{% endif %}{% endblock %} {% block page_title %}{% if abono %}Editar abono — {{ abono.numero }}{% else %}Nuevo abono a proveedor{% endif %}{% endblock %} {% block content %} {% with msgs = get_flashed_messages(with_categories=true) %} {% for cat, msg in msgs %}
{{ msg }}
{% endfor %} {% endwith %}
Datos del abono
{% if abono %}{{ abono.numero }}{% else %}{{ numero_prev }}{% endif %}
Líneas de detalle
{% set lineas_list = lineas if lineas else [] %} {% if lineas_list %} {% for l in lineas_list %} {% endfor %} {% else %} {% endif %}
Descripción Cantidad Precio unit. Subtotal
{{ '%.2f'|format(l.subtotal or 0) }}
0.00
Notas internas
Resumen
Base imponible 0.00 €
IVA (21%) 0.00 €

Total 0.00 €
{% endblock %} {% block extra_scripts %} {% endblock %}