diff --git a/biscuit/core/models.py b/biscuit/core/models.py index 16d7c0debea09bcbe37e469e8779058e266b405b..21e872794d1dd5059d3bedfdd1f2a75b56fb5b45 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=_(