blob: ef53244517ad1c915d5c0d62e50bb59c6c81731e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% macro list(resource, action, xs) -%}
{% if xs -%}
{% set s = xs | length | pluralize -%}
{{ xs | length }} {{ resource }}{{ s }} {{ action }}{{ s }} :
{% for x in xs -%}
- {{ x.date }} {{ x.name }} {{ x.amount | euros() }}
{% endfor %}
{% endif -%}
{% endmacro paging %}
|