mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-20 07:00:24 +00:00
14 lines
266 B
Python
14 lines
266 B
Python
from django.db import models
|
|
|
|
from imagekit.models import ImageModel
|
|
|
|
|
|
class TestPhoto(ImageModel):
|
|
"""
|
|
Minimal ImageModel class for testing.
|
|
|
|
"""
|
|
image = models.ImageField(upload_to='images')
|
|
|
|
class IKOptions:
|
|
spec_module = 'core.specs'
|