diff --git a/longs/tables.py b/longs/tables.py index 64c5a07a..b1119226 100755 --- a/longs/tables.py +++ b/longs/tables.py @@ -31,6 +31,9 @@ class LongSeriesImageColumn(tables.Column): def render(self, value): obj = value.first() + if obj is None: + return "None" + image_object = obj.image try: thumbnailer = get_thumbnailer(image_object)