We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are some minor issues in the documentation:
'STORAGE': { 'BACKEND': 'django.core.files.storage.FileSystemStorage', # You can also use Amazon S3 or any other Django storage backends }
is missing a trailing comma.
python manage.py delete_thumbnails --model=app.Model --size=thumbnail_size_to_delete
--field is apparently a required parameter for this command.
--field
Also - it would be super helpful if there were instructions on how to migrate existing models.FileField to thumbnails.fields.ImageField.
models.FileField
thumbnails.fields.ImageField
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There are some minor issues in the documentation:
is missing a trailing comma.
python manage.py delete_thumbnails --model=app.Model --size=thumbnail_size_to_delete
--field
is apparently a required parameter for this command.Also - it would be super helpful if there were instructions on how to migrate existing
models.FileField
tothumbnails.fields.ImageField
.The text was updated successfully, but these errors were encountered: