{% 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 }} |
| {{ object_type }} |
{{ object.conditions|json }}
{% else %}
{% trans "None" %}
{% endif %}| {% trans "Type" %} | {{ object.get_action_type_display }} |
|---|---|
| {% trans "Object" %} | {{ object.action_object|linkify }} |
| {% trans "Data" %} |
{% if object.action_data %}
{{ object.action_data|json }}
{% else %}
{{ ''|placeholder }}
{% endif %}
|