jonasundderwolf / django-image-cropping

Django helper application to easily and non-destructively crop arbitrarily large images in admin and frontend.
Other
553 stars 130 forks source link

Cropping Tool is only a text box #171

Closed ipad12z closed 2 years ago

ipad12z commented 2 years ago

These are all from the example. I just downloaded the files and install the requirements but I am not seeing the crop widget.

image

image

image

I also made my own, following the guide:

image

image

But still has the same issue:

image

mschiegg commented 2 years ago

A temporary solution would be to define jquery in the settings.py

settings.py IMAGE_CROPPING_JQUERY_URL = '/static/admin/js/vendor/jquery/jquery.js'

anrie commented 2 years ago

@mschiegg is correct. We issued a new release where the default setting for JQUERY_URL is fixed. @ipad12z Can you confirm that the widget works again in the latest version (1.6.2)?

ipad12z commented 2 years ago

@anrie sorry for the late reply, I decided not to include the widget in my project anymore and stuck with the static cropping method. I will consider adding the widget to my project when I decided to add more features to my personal project. Thank you for your time!