From 0d6cf421ced140327dadad73bba227ee01a2af21 Mon Sep 17 00:00:00 2001 From: Dominik George <dominik.george@teckids.org> Date: Thu, 29 Aug 2019 14:12:26 +0200 Subject: [PATCH] Fix model field name. Advances #56. --- biscuit/core/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biscuit/core/models.py b/biscuit/core/models.py index 16d7c0deb..21e872794 100644 --- a/biscuit/core/models.py +++ b/biscuit/core/models.py @@ -69,7 +69,7 @@ class Person(SchoolRelated): sex = models.CharField(verbose_name=_( 'Sex'), max_length=1, choices=SEX_CHOICES, blank=True) - photo = models.ImageCropField(verbose_name=_('Photo'), blank=True, null=True) + photo = ImageCropField(verbose_name=_('Photo'), blank=True, null=True) photo_cropping = ImageRatioField('photo', '600x800', size_warning=True) import_ref = models.CharField(verbose_name=_( -- GitLab