Cédric Carrard
Cédric Carrard
@vstoykov I have the same problem with: django==1.10.5 django-storages==1.5.2 boto3==1.4.4 django-imagekit==4.0
@vstoykov I have use imagekit.models.ProcessedImageField I have this problem when I submit a form with my image upload on s3 ``` "/usr/local/lib/python3.4/site-packages/django/template/base.py" current = current[bit] TypeError: 'ImageCacheFile' object is not...
@vstoykov I fixed my problem: IMAGEKIT_DEFAULT_CACHEFILE_STRATEGY = 'app.example.imagegenerators.FixJustInTime' ``` class FixJustInTime: def on_content_required(self, file): try: file.generate() except: pass def on_existence_required(self, file): try: file.generate() except: pass ``` You have a better...
@marcgibbons I think it has something to do with this issue https://github.com/swagger-api/swagger-ui/issues/2915. What do you think ?
Hi @Leo-U, i opened a PR, if you have any feedback
@zzak Can you review my pull requests? Or do I need to speak to someone in charge of documentation? Thanks for help
@Leo-U @zzak I've updated the pull request