{% for tx in budget.transactions[:10] %}
-
{{tx.date.strftime('%d %b')}}
{{tx.label}}
{{tx.amount}}€
{% endfor %}
{% if budget.transactions|length > 10 %}
more
{% for tx in budget.transactions[10:] %}
-
{{tx.date.strftime('%d %b')}}
{{tx.label}}
{{tx.amount}}€
{% endfor %}
{% endif %}