diff --git a/src/api/templates/contact.html b/src/api/templates/contact.html
index 28224e9..ca142b2 100644
--- a/src/api/templates/contact.html
+++ b/src/api/templates/contact.html
@@ -96,7 +96,6 @@
white-space: nowrap;
color: #888;
background: #f0f0f0;
- margin-top: 0.35rem;
}
.section {
@@ -209,13 +208,15 @@
{% if contact.organization %}{{ contact.organization }}{% endif %}
{% endif %}
+
+
+ {% if contact.photo_url %}
+

+ {% endif %}
{% if show_all and contact.account %}
Account: {{ contact.account }}
{% endif %}
- {% if contact.photo_url %}
-
- {% endif %}
{% if contact.birthday %}
diff --git a/src/api/templates/index.html b/src/api/templates/index.html
index e43dd84..c5ef333 100644
--- a/src/api/templates/index.html
+++ b/src/api/templates/index.html
@@ -200,13 +200,15 @@
{% if c.birthday %}
{{ c.birthday }}
{% endif %}
+
+
+ {% if c.photo_url %}
+

+ {% endif %}
{% if show_all and c.account %}
-
Account: {{ c.account }}
+
Account: {{ c.account }}
{% endif %}
- {% if c.photo_url %}
-
- {% endif %}
{% endfor %}
diff --git a/src/scheduler.py b/src/scheduler.py
index 09c25b1..6aa95ff 100644
--- a/src/scheduler.py
+++ b/src/scheduler.py
@@ -100,7 +100,7 @@ def main():
except Exception:
logger.exception("Schema-Init fehlgeschlagen — Sync wird trotzdem gestartet")
- logger.info("Fuehre initialen Sync aus...")
+ logger.info("Starte ersten Sync-Lauf...")
run_sync()
last_sync = datetime.now()