diff --git a/nummi/main/templates/main/table/snapshot.html b/nummi/main/templates/main/table/snapshot.html
index 5ada940..de5cd50 100644
--- a/nummi/main/templates/main/table/snapshot.html
+++ b/nummi/main/templates/main/table/snapshot.html
@@ -1,56 +1,74 @@
{% load main_extras %}
{% load i18n %}
-
-
+
+
+
+
+
+ {% if not account %}
+
+
+ {% endif %}
+
+
+
+
+
+ |
+
+
+ |
+ {% translate "Date" %} |
+ {% if not account %}
+ {% translate "Account" %} |
+ {% endif %}
+ {% translate "Value" %} |
+ {% translate "Difference" %} |
+ {% translate "Transactions" %} |
+
+
+ {% for snap in snapshots %}
+
+
+
+ |
+
+ {% if snap.file %}
+
+
+
+ {% endif %}
+ |
+
+ {{ snap.date|date:"Y-m-d" }}
+ |
+ {% if not account %}
+
+
+ |
+
+ {{ snap.account }}
+ |
+ {{ snap.value|value }} |
+ {{ snap.diff|pmvalue }} |
+ {{ snap.sum|pmvalue }} |
+ {% endif %}
+
+ {% endfor %}
+
+
+
+{% comment %}
+
{% if new_snapshot_url %}
{% endif %}
- {% for snap in snapshots %}
-
-
- {% if snap.sum == snap.diff %}
-
- {% else %}
-
- {% endif %}
-
-
- {% if snap.file %}
-
-
-
- {% endif %}
-
-
- {{ snap.date|date:"Y-m-d" }}
-
- {% if not account %}
-
-
- {{ snap.account }}
-
- {% endif %}
-
{{ snap.value|value }}
-
{{ snap.diff|pmvalue }}
-
{{ snap.sum|pmvalue }}
-
- {% endfor %}
{% if snapshots_url %}
{% endif %}
+{% endcomment %}
diff --git a/nummi/main/templates/main/table/transaction.html b/nummi/main/templates/main/table/transaction.html
index 7bb1c5b..7d7ac59 100644
--- a/nummi/main/templates/main/table/transaction.html
+++ b/nummi/main/templates/main/table/transaction.html
@@ -3,15 +3,19 @@