{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% block content %}
{% trans "Event Rule" %}
{% trans "Name" %} {{ object.name }}
{% trans "Enabled" %} {% checkmark object.enabled %}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Object Types" %}
{% for ct in object.content_types.all %} {% endfor %}
{{ ct }}
{% trans "Events" %}
{% trans "Create" %} {% checkmark object.type_create %}
{% trans "Update" %} {% checkmark object.type_update %}
{% trans "Delete" %} {% checkmark object.type_delete %}
{% trans "Job start" %} {% checkmark object.type_job_start %}
{% trans "Job end" %} {% checkmark object.type_job_end %}
{% plugin_left_page object %}
{% trans "Conditions" %}
{% if object.conditions %}
{{ object.conditions|json }}
{% else %}

{% trans "None" %}

{% endif %}
{% trans "Action" %}
{% trans "Type" %} {{ object.get_action_type_display }}
{% trans "Object" %} {% if object.action_type == 'script' %} {{ object.action_object }} / {{ object.action_parameters.script_name }} {% else %} {{ object.action_object|linkify }} {% endif %}
{% trans "Data" %} {% if object.action_data %}
{{ object.action_data|json }}
{% else %} {{ ''|placeholder }} {% endif %}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}