{{ action.object_type }}
|
{{ action.identifier }} |
{{ action.action_type.label|upper }} |
{% if action.action_type.name == "UPDATED" %}
{{ _('actions_crm_field') }} |
{{ _('actions_crm_previous_value') }} |
{{ _('actions_crm_new_value') }} |
{% for key, prev_value in action.previous_state.items() %}
{{ key }} |
{{ prev_value }} |
{{ action.new_state[key] }} |
{% endfor %}
{% elif action.action_type.name == "CREATED" %}
{{ _('actions_crm_field') }} |
{{ _('actions_crm_value') }} |
{% for key, prev_value in action.new_state.items() %}
{{ key }} |
{{ action.new_state[key] }} |
{% endfor %}
{% else %}
{{ action.extra }}
{% endif %}
|
{% if action.url %}
{{ _('actions_crm_open_link') }}
{% endif %}
|
{% endfor %}