diff --git a/vrobbler/templates/scrobbles/import_list.html b/vrobbler/templates/scrobbles/import_list.html
index fac11dd..8a79697 100644
--- a/vrobbler/templates/scrobbles/import_list.html
+++ b/vrobbler/templates/scrobbles/import_list.html
@@ -3,81 +3,79 @@
{% block title %}Scrobble Imports{% endblock %}
{% block lists %}
+{% if tsv_imports %}
- {% if tsv_imports %}
-
-
Audioscrobbler
-
-
-
-
- | Started |
- Finished |
- Scrobbles |
-
-
-
- {% for obj in tsv_imports %}
-
- | {{obj.human_start}} |
- {{obj.processed_finished}} |
- {{obj.process_count}} |
-
- {% endfor %}
-
-
-
+
Audioscrobbler
+
+
+
+
+ | Started |
+ Finished |
+ Scrobbles |
+
+
+
+ {% for obj in tsv_imports %}
+
+ | {{obj.human_start}} |
+ {{obj.processed_finished}} |
+ {{obj.process_count}} |
+
+ {% endfor %}
+
+
- {% endif %}
-
- {% if lastfm_imports %}
-
-
LastFM
-
-
-
-
- | Started |
- Finished |
- Scrobbles |
-
-
- {% for obj in lastfm_imports %}
-
- | {{obj.human_start}} |
- {{obj.processed_finished}} |
- {{obj.process_count}} |
-
- {% endfor %}
-
-
-
-
- {% endif %}
-
- {% if koreader_imports %}
-
-
KOReader
-
-
-
-
- | Started |
- Finished |
- Scrobbles |
-
-
- {% for obj in koreader_imports %}
-
- | {{obj.human_start}} |
- {{obj.processed_finished}} |
- {{obj.process_count}} |
-
- {% endfor %}
-
-
-
-
- {% endif %}
+{% endif %}
+
+{% if lastfm_imports %}
+
+
LastFM
+
+
+
+
+ | Started |
+ Finished |
+ Scrobbles |
+
+
+ {% for obj in lastfm_imports %}
+
+ | {{obj.human_start}} |
+ {{obj.processed_finished}} |
+ {{obj.process_count}} |
+
+ {% endfor %}
+
+
+
+
+{% endif %}
+
+{% if koreader_imports %}
+
+
KOReader
+
+
+
+
+ | Started |
+ Finished |
+ Scrobbles |
+
+
+ {% for obj in koreader_imports %}
+
+ | {{obj.human_start}} |
+ {{obj.processed_finished}} |
+ {{obj.process_count}} |
+
+ {% endfor %}
+
+
+
+
+{% endif %}
{% endblock %}