diff --git a/catalog/templates/tvseason.html b/catalog/templates/tvseason.html
index 2dfa396d..692a2e5f 100644
--- a/catalog/templates/tvseason.html
+++ b/catalog/templates/tvseason.html
@@ -8,6 +8,7 @@
{% load thumb %}
{% block details %}
+
{% include '_people.html' with people=item.additional_title role='' max=99 %}
{% with item.all_seasons as seasons %}
{% if seasons %}
diff --git a/catalog/tv/models.py b/catalog/tv/models.py
index 27633a9a..8dc8104f 100644
--- a/catalog/tv/models.py
+++ b/catalog/tv/models.py
@@ -423,6 +423,16 @@ class TVSeason(Item):
return f"{self.parent_item.display_title} {s}"
return s
+ @cached_property
+ def additional_title(self) -> list[str]:
+ title = self.display_title
+ return [
+ t["text"]
+ for t in self.localized_title
+ if t["text"] != title
+ and RE_LOCALIZED_SEASON_NUMBERS.sub("", t["text"]) != ""
+ ]
+
def update_linked_items_from_external_resource(self, resource):
for w in resource.required_resources:
if w["model"] == "TVShow":