aboutsummaryrefslogtreecommitdiff
path: root/templates/report/list.j2
diff options
context:
space:
mode:
Diffstat (limited to 'templates/report/list.j2')
-rw-r--r--templates/report/list.j214
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/report/list.j2 b/templates/report/list.j2
new file mode 100644
index 0000000..ef53244
--- /dev/null
+++ b/templates/report/list.j2
@@ -0,0 +1,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 %}