{% extends "base.html" %} {% load humanize %} {% block interface %}
{% include "_navigation.html" %}

Movimientos de la cuenta: {{ cuenta.nombre }}

{{ form.mes }}
{{ form.anio }}
{{ form.categoria }}
{% for mov in movimientos %} {% endfor %}
Fecha Origen Destino Monto Descripción
{{ mov.fecha }} {{ mov.cuenta_origen.nombre }} {{ mov.cuenta_destino.nombre }} {{ mov.monto|floatformat:2 }} € {{ mov.descripcion }}
{% endblock %}