diff --git a/netbox/extras/tables/tables.py b/netbox/extras/tables/tables.py
index ebf705ff5..6711a02eb 100644
--- a/netbox/extras/tables/tables.py
+++ b/netbox/extras/tables/tables.py
@@ -6,7 +6,6 @@ from django.utils.translation import gettext_lazy as _
from extras.models import *
from netbox.constants import EMPTY_TABLE_TEXT
from netbox.tables import BaseTable, NetBoxTable, columns
-from .template_code import *
__all__ = (
'BookmarkTable',
diff --git a/netbox/extras/tables/template_code.py b/netbox/extras/tables/template_code.py
deleted file mode 100644
index fe1a5685d..000000000
--- a/netbox/extras/tables/template_code.py
+++ /dev/null
@@ -1,8 +0,0 @@
-CONFIGCONTEXT_ACTIONS = """
-{% if perms.extras.change_configcontext %}
-
-{% endif %}
-{% if perms.extras.delete_configcontext %}
-
-{% endif %}
-"""