forked from CGM_Public/pretix_original
20 lines
632 B
Plaintext
20 lines
632 B
Plaintext
{% load i18n %}
|
|
{{ notification.title }}{% if notification.detail %}
|
|
|
|
{{ notification.detail }}
|
|
{% endif %}{% if notification.url %}
|
|
|
|
{{ notification.url }}{% endif %}{% for attr in notification.attributes %}
|
|
|
|
{{ attr.title }}: {{ attr.value }}{% endfor %}{% for action in notification.actions %}
|
|
|
|
{{ action.label }}
|
|
{{ action.url }}{% endfor %}
|
|
|
|
{% trans "You receive these emails based on your notification settings." %}
|
|
{% trans "Click here to view and change your notification settings:" %}
|
|
{{ settings_url }}
|
|
{% if disable_url %}{% trans "Click here disable all notifications immediately:" %}
|
|
{{ disable_url }}
|
|
{% endif %}
|