diff --git a/ennstatus/templates/donate/macros.html b/ennstatus/templates/donate/macros.html
--- a/ennstatus/templates/donate/macros.html
+++ b/ennstatus/templates/donate/macros.html
@@ -11,24 +11,26 @@
{% endmacro %}
{% macro create_donations_table(csv_file) %}
-
-
-
- # |
- Date |
- Statement |
- Amount |
-
-
-
- {% for row in csv_file %}
+
+
+
- {{ loop.index }} |
- {{ row[0] }} |
- {{ row[1] }} |
- {{ colorize_numbers(row[2]) }} |
+ # |
+ Date |
+ Statement |
+ Amount |
- {% endfor %}
-
-
+
+
+ {% for row in csv_file %}
+
+ {{ loop.index }} |
+ {{ row[0] }} |
+ {{ row[1] }} |
+ {{ colorize_numbers(row[2]) }} |
+
+ {% endfor %}
+
+
+
{% endmacro %}