diff --git a/netbox/templates/extras/eventrule.html b/netbox/templates/extras/eventrule.html
index 86c330121..eff7e60e5 100644
--- a/netbox/templates/extras/eventrule.html
+++ b/netbox/templates/extras/eventrule.html
@@ -27,6 +27,20 @@
+
+
+
+
+ {% for ct in object.content_types.all %}
+
+ {{ ct }} |
+
+ {% endfor %}
+
+
+
-
-
-
-
- {% for ct in object.content_types.all %}
-
- {{ ct }} |
-
- {% endfor %}
-
-
-
+
+
+
+
+
+ {% 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 %}