diff --git a/nummi/history/templatetags/history_extras.py b/nummi/history/templatetags/history_extras.py index 48a8aaf..56b01c4 100644 --- a/nummi/history/templatetags/history_extras.py +++ b/nummi/history/templatetags/history_extras.py @@ -30,9 +30,9 @@ def empty_calendar_cells_end(n): @register.simple_tag def up_down_icon(val): if val > 0: - return remix("arrow-up-s", "green") + return remix("arrow-up-s") elif val < 0: - return remix("arrow-down-s", "red") + return remix("arrow-down-s") @register.simple_tag diff --git a/nummi/statement/templates/statement/statement_table.html b/nummi/statement/templates/statement/statement_table.html index 57b4b8c..322653a 100644 --- a/nummi/statement/templates/statement/statement_table.html +++ b/nummi/statement/templates/statement/statement_table.html @@ -33,9 +33,9 @@ {% for snap in statements %} {% if snap.sum == snap.diff %} - {{ "check"|remix }} + {{ "check"|remix }} {% else %} - {{ "close"|remix }} + {{ "close"|remix }} {% endif %} {% if snap.file %}{{ "attachment"|remix }}{% endif %}