mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-04-11 08:50:58 +00:00
15 lines
293 B
Python
15 lines
293 B
Python
from django.db import models
|
|
|
|
from imagekit import processors
|
|
from imagekit.models import ImageModel
|
|
|
|
|
|
class TestPhoto(ImageModel):
|
|
"""
|
|
Minimal ImageModel class for testing.
|
|
|
|
"""
|
|
image = models.ImageField(upload_to='images')
|
|
|
|
class IKOptions:
|
|
spec_module = 'specs'
|