diff --git a/netbox/extras/tables.py b/netbox/extras/tables.py
index a5545693e..dca84dfdc 100644
--- a/netbox/extras/tables.py
+++ b/netbox/extras/tables.py
@@ -38,11 +38,11 @@ OBJECTCHANGE_TIME = """
"""
OBJECTCHANGE_ACTION = """
-{% if record.action == 1 %}
+{% if record.action == 'create' %}
Created
-{% elif record.action == 2 %}
+{% elif record.action == 'update' %}
Updated
-{% elif record.action == 3 %}
+{% elif record.action == 'delete' %}
Deleted
{% endif %}
"""