feat: Add unsubscribe link

This commit is contained in:
2025-07-12 11:24:44 +02:00
parent 551b5ed6be
commit f519f78922
3 changed files with 21 additions and 1 deletions

View File

@@ -54,6 +54,11 @@
font-size: 14px;
}
.setting-info {
font-size: 10px;
}
@media (max-width: 600px) {
.content, .header, .footer {
padding: 20px 15px;

View File

@@ -1,3 +1,12 @@
{% load i18n %}
<div class="footer">
🐀 notfellchen.org | Für Menschen die Ratten aus dem Tierschutz ein liebendes Zuhause geben wollen.
</div>
{% if notification %}
<div class="setting-info">
{% trans "Du bekommst diese Nachricht basierend auf deinen Benachrichtigungseinstellungen." %}<br>
<a href="{{ notification.user_to_notify.get_full_url }}">
{% trans "Einstellungen ändern" %}
</a>
</div>
{% endif %}
</div>

View File

@@ -1 +1,7 @@
{% load i18n %}
🐀 notfellchen.org | Für Menschen die Ratten aus dem Tierschutz ein liebendes Zuhause geben wollen.
{% if notification %}
{% trans "Du bekommst diese Nachricht basierend auf deinen Benachrichtigungseinstellungen." %}
{% trans "Einstellungen ändern" %}: {{ notification.user_to_notify.get_full_url }}
{% endif %}