diff --git a/scipost_django/submissions/refereeing_cycles.py b/scipost_django/submissions/refereeing_cycles.py
index 0effcbe42424fa3a425edd91d9e09091691b041b..8b7fafef94e0b15b5a822b9b2e1071c260cc305f 100644
--- a/scipost_django/submissions/refereeing_cycles.py
+++ b/scipost_django/submissions/refereeing_cycles.py
@@ -108,7 +108,7 @@ class BaseAction:
             count=len(self._objects),
             object=obj.__class__.__name__,
             author=obj.author.formal_str if getattr(obj, "author", None) else "",
-            referee=getattr(obj, "referee_str", ""),
+            referee=obj.referee.full_name if getattr(obj, "referee", None) else "",
             days=timedelta.days,
             deadline=deadline.days if deadline else "-",
             deadline_min=-deadline.days if deadline else "-",