diff --git a/docs/plugins/development/templates.md b/docs/plugins/development/templates.md
index 20838149fb3..0e67a8ae024 100644
--- a/docs/plugins/development/templates.md
+++ b/docs/plugins/development/templates.md
@@ -74,7 +74,6 @@ This template is used by the `ObjectView` generic view to display a single objec
| `breadcrumbs` | - | Breadcrumb list items (HTML `
` elements) |
| `object_identifier` | - | A unique identifier (string) for the object |
| `extra_controls` | - | Additional action buttons to display |
-| `extra_tabs` | - | Additional tabs to include |
#### Context
diff --git a/docs/release-notes/version-3.5.md b/docs/release-notes/version-3.5.md
index 1e3ea18a907..b8453e5f30b 100644
--- a/docs/release-notes/version-3.5.md
+++ b/docs/release-notes/version-3.5.md
@@ -1,7 +1,8 @@
-# NetBox v3.4
+# NetBox v3.5
## v3.5.0 (FUTURE)
### Other Changes
+* [#10604](https://github.com/netbox-community/netbox/issues/10604) - Remove unused `extra_tabs` block from `object.html` generic template
* [#10923](https://github.com/netbox-community/netbox/issues/10923) - Remove unused `NetBoxModelCSVForm` class (replaced by `NetBoxModelImportForm`)
diff --git a/netbox/templates/generic/object.html b/netbox/templates/generic/object.html
index 023726a30e6..d3a61745519 100644
--- a/netbox/templates/generic/object.html
+++ b/netbox/templates/generic/object.html
@@ -11,7 +11,6 @@
breadcrumbs: Breadcrumb list items (HTML elements)
object_identifier: Unique identifier for the object
extra_controls: Additional action buttons to display
- extra_tabs: Additional tabs to include
content: Page content
Context:
@@ -84,9 +83,6 @@
{{ object|meta:"verbose_name"|bettertitle }}
- {# Include any extra tabs passed by the view #}
- {% block extra_tabs %}{% endblock %}
-
{# Include tabs for registered model views #}
{% model_view_tabs object %}