diff --git a/netbox_access_lists/templates/netbox_access_lists/accesslist.html b/netbox_access_lists/templates/netbox_access_lists/accesslist.html
index e7c75f9..43e6d23 100644
--- a/netbox_access_lists/templates/netbox_access_lists/accesslist.html
+++ b/netbox_access_lists/templates/netbox_access_lists/accesslist.html
@@ -50,7 +50,7 @@
{{ object.name }} |
- | Default Action |
+ Type |
{{ object.get_type_display }} |
diff --git a/netbox_access_lists/templates/netbox_access_lists/routingpolicy.html b/netbox_access_lists/templates/netbox_access_lists/routingpolicy.html
deleted file mode 100644
index 00ec953..0000000
--- a/netbox_access_lists/templates/netbox_access_lists/routingpolicy.html
+++ /dev/null
@@ -1,94 +0,0 @@
-{% extends 'generic/object.html' %}
-{% load buttons %}
-{% load custom_links %}
-{% load helpers %}
-{% load plugins %}
-{% load render_table from django_tables2 %}
-
-{% block breadcrumbs %}
-Routing Policies
-{% endblock %}
-{% block controls %}
-
- {% if perms.netbox_bgp.change_policy %}
-
- Rule
-
- {% endif %}
- {% if perms.netbox_bgp.change_policy %}
-
- Edit
-
- {% endif %}
- {% if perms.netbox_bgp.delete_policy %}
-
- Delete
-
- {% endif %}
-
-{% endblock controls %}
-{% block tabs %}
-
-{% endblock tabs %}
-
-{% block content %}
-
-
-
-
-
-
-
- | name |
- {{ object.name }} |
-
-
- | Description |
- {{ object.description|placeholder }} |
-
-
-
-
- {% include 'inc/panels/custom_fields.html' %}
- {% include 'inc/panels/tags.html' %}
- {% plugin_left_page object %}
-
-
-
-
-
- {% render_table related_session_table 'inc/table.html' %}
-
- {% plugin_right_page object %}
-
-
-
-
-
-
-
-
- {% render_table rules_table 'inc/table.html' %}
-
- {% plugin_full_width_page object %}
-
-
-
-{% endblock %}
\ No newline at end of file