You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class ImageMixin(models.Model):
"""
An abstract base class model that provides a VersatileImageField Image with POI
"""
image = VersatileImageField(upload_to=upload_to, blank=True, null=True, ppoi_field='image_poi',
verbose_name="image")
image_poi = PPOIField(verbose_name="image's Point of Interest") # point of interest
class Meta:
abstract = True