{% 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 "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 "Object Types" %}
{% for ct in object.content_types.all %} {% endfor %}
{{ ct }}
{% trans "Conditions" %}
{% if object.conditions %}
{{ object.conditions|json }}
{% else %}

{% trans "None" %}

{% endif %}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}