# HG changeset patch # User Dennis Fink # Date 2015-10-24 00:30:23 # Node ID a2e1a4a4ed7c7f9b0468d6833dffbe8a177dad55 # Parent 92d0776670b57699a2d7d1e23937c431481f21f8 Also make received donation table responsive 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) %} - - - - - - - - - - - {% for row in csv_file %} +
+
#DateStatementAmount
+ - - - - + + + + - {% endfor %} - -
{{ loop.index }}{{ row[0] }}{{ row[1] }}{{ colorize_numbers(row[2]) }}#DateStatementAmount
+ + + {% for row in csv_file %} + + {{ loop.index }} + {{ row[0] }} + {{ row[1] }} + {{ colorize_numbers(row[2]) }} + + {% endfor %} + + + {% endmacro %}