diff --git a/src/unfold/templates/unfold/helpers/tab_action.html b/src/unfold/templates/unfold/helpers/tab_action.html
index a22b59a8..9e8a39ed 100644
--- a/src/unfold/templates/unfold/helpers/tab_action.html
+++ b/src/unfold/templates/unfold/helpers/tab_action.html
@@ -1,5 +1,5 @@
diff --git a/src/unfold/templates/unfold/helpers/tab_list.html b/src/unfold/templates/unfold/helpers/tab_list.html
index 89b1dc1b..b1804184 100644
--- a/src/unfold/templates/unfold/helpers/tab_list.html
+++ b/src/unfold/templates/unfold/helpers/tab_list.html
@@ -1,5 +1,5 @@
{% if not is_popup %}
- {% if tab_list or actions_list or actions_items or nav_global %}
+ {% if tab_list or actions_list or actions_detail or actions_items or nav_global %}
{% if tab_list %}
{% endif %}
- {% if actions_list or actions_items or nav_global %}
+ {% if actions_list or actions_detail or actions_items or nav_global %}
{% for action in actions_list %}
{% include "unfold/helpers/tab_action.html" with title=action.title link=action.path %}
{% endfor %}
+ {% for action in actions_detail %}
+ {% include "unfold/helpers/tab_action.html" with title=action.title link=action.path %}
+ {% endfor %}
+
{% if actions_items %}
{{ actions_items }}
{% endif %}
diff --git a/src/unfold/templatetags/unfold.py b/src/unfold/templatetags/unfold.py
index 079690ec..2aaab69e 100644
--- a/src/unfold/templatetags/unfold.py
+++ b/src/unfold/templatetags/unfold.py
@@ -26,6 +26,7 @@ def tab_list(context, opts) -> str:
context={
"tab_list": tabs,
"nav_global": context.get("nav_global"),
+ "actions_detail": context.get("actions_detail"),
"actions_list": context.get("actions_list"),
"actions_items": context.get("actions_items"),
"is_popup": context.get("is_popup"),