diff --git a/netbox_access_lists/templates/netbox_access_lists/accessliststandardrule.html b/netbox_access_lists/templates/netbox_access_lists/accessliststandardrule.html
new file mode 100644
index 0000000..ea5e41e
--- /dev/null
+++ b/netbox_access_lists/templates/netbox_access_lists/accessliststandardrule.html
@@ -0,0 +1,76 @@
+{% extends 'generic/object.html' %}
+
+{% block content %}
+
+
+
+ {% include 'inc/panels/custom_fields.html' %}
+ {% include 'inc/panels/tags.html' %}
+
+
+
+
+
+
+
+ | Remark |
+ {{ object.get_remark_display|placeholder }} |
+
+
+ | Protocol |
+ {{ object.get_protocol_display|placeholder }} |
+
+
+ | Source Prefix |
+
+ {% if object.source_prefix %}
+ {{ object.source_prefix }}
+ {% else %}
+ {{ ''|placeholder }}
+ {% endif %}
+ |
+
+
+ | Source Ports |
+ {{ object.source_ports|join:", "|placeholder }} |
+
+
+ | Destination Prefix |
+
+ {% if object.destination_prefix %}
+ {{ object.destination_prefix }}
+ {% else %}
+ {{ ''|placeholder }}
+ {% endif %}
+ |
+
+
+ | Destination Ports |
+ {{ object.destination_ports|join:", "|placeholder }} |
+
+
+ | Action |
+ {{ object.get_action_display }} |
+
+
+
+
+
+
+{% endblock content %}