diff --git a/mayan/apps/navigation/classes.py b/mayan/apps/navigation/classes.py index 82303fed82..714f560dc1 100644 --- a/mayan/apps/navigation/classes.py +++ b/mayan/apps/navigation/classes.py @@ -721,6 +721,8 @@ class SourceColumn(object): ) elif self.func: result = self.func(context=context, **self.kwargs) + else: + result = context['object'] if self.widget: widget_instance = self.widget()