diff --git a/InvenTree/company/serializers.py b/InvenTree/company/serializers.py index 77a4bddbf3..624a9b6157 100644 --- a/InvenTree/company/serializers.py +++ b/InvenTree/company/serializers.py @@ -32,6 +32,8 @@ class CompanySerializer(InvenTreeModelSerializer): url = serializers.CharField(source='get_absolute_url', read_only=True) part_count = serializers.CharField(read_only=True) + image = serializers.CharField(source='get_image_url', read_only=True) + class Meta: model = Company fields = [ diff --git a/InvenTree/templates/about.html b/InvenTree/templates/about.html index 2516812d1c..da5b4ddc5b 100644 --- a/InvenTree/templates/about.html +++ b/InvenTree/templates/about.html @@ -28,6 +28,10 @@