diff --git a/netbox/templates/htmx/table.html b/netbox/templates/htmx/table.html
index cb80125cf..4cdae4ec1 100644
--- a/netbox/templates/htmx/table.html
+++ b/netbox/templates/htmx/table.html
@@ -17,15 +17,17 @@
{% if request.htmx %}
{# Include the updated object count for display elsewhere on the page #}
-
{{ table.rows|length }}
+ {% if not table.embedded %}
+ {{ table.rows|length }}
+ {% endif %}
{# Include the updated "save" link for the table configuration #}
- {% if table.config_params %}
+ {% if table.config_params and not table.embedded %}
Save
{% endif %}
{# Update the bulk action buttons with new query parameters #}
- {% if actions %}
+ {% if actions and not table.embedded %}
{% action_buttons actions model multi=True %}