Reputation: 3443
I am working on a Django app (version 2.2.6) and I want to use tinymce.models
HTMLFIELd
in my model. One of the requirements is that when the user clicks on the image tab it needs to pop up with an insert image URL field or let the user browse from their local files.
The default of HTMLFIEL
is to render only the image URL option. For me to add the second option it seems that I need to install django-filebrowser
. When I look at the docs it says the required Django version is higher than the Django version that I am using. I don't want to upgrade django. Is there any way to make it work?
Upvotes: 1
Views: 116
Reputation: 11414
If you check the releases page of django-filebrowser and click on older versions of the package, you'll see that the older versions of the package supports older versions of Django.
If you use pip
, pip install django-filebrowser
will automatically install the latest version of django-filebrowser
that is compatible with your version of Django.
Upvotes: 0