forked from CGM_Public/pretix_original
* First stab at notification settings * Add "global" setting for notification levels * Trigger notification task * Get users with permission for event * Actually send notification emails * More notifications * Allow to turn off notifications * Link in email to pause all notifications * Add NotificationType to wordlist * Add notification tests * Add documentation * Rebase fixes
19 lines
600 B
Plaintext
19 lines
600 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 }}
|
|
{% trans "Click here disable all notifications immediately:" %}
|
|
{{ disable_url }}
|