{% load static i18n %}
{% trans "Load Automations" %}
{% csrf_token %}
{% for automation in automations %}
{{automation.fields.title}}
{{automation.template_body|safe}}
    {% if automation.fields.delivery_channel == 'email' %}
  • {% trans "Email" %}
  • {% elif automation.fields.delivery_channel == 'notification' %}
  • {% trans "Notification" %}
  • {% elif automation.fields.delivery_channel == 'both' %}
  • {% trans "Email" %}
  • {% trans "Notification" %}
  • {% endif %}
{% endfor %}