diff options
Diffstat (limited to 'ishtar_common/models.py')
| -rw-r--r-- | ishtar_common/models.py | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/ishtar_common/models.py b/ishtar_common/models.py index b6c8fbb3d..70f65fd68 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -3477,6 +3477,10 @@ class Basket(FullSearch, OwnPerms):      def cached_label(self):          return unicode(self) +    @property +    def full_label(self): +        return u"{} - {}".format(self.label, self.user) +      @classmethod      def get_short_menu_class(cls, pk):          return 'basket' | 
