{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% block content %}
| {% trans "Name" %} | {{ object.name }} |
|---|---|
| {% trans "Enabled" %} | {% checkmark object.enabled %} |
| {% trans "Description" %} | {{ object.description|placeholder }} |
| {{ ct }} |
| {% 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 %} |
{{ object.conditions|json }}
{% else %}
{% trans "None" %}
{% endif %}| {% 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 %}
|