Getting Started
If you want to read a more complete description of how to use this widget, see the Tutorial. But, if you is an advanced user, only install the package:
Version Information
On the 1.0.0
release of this package we droped the support for Django 3.2
, Django 4.0
and Django 4.1
. We, currently, maintain the support for Django 4.2
(LTS), Django 5.0
and Django 5.1
. Then, if you are using Django 3.2
, 4.0
or 4.1
, installs 0.7.1
version:
and add the image_uploader_widget
to the INSTALLED_APPS
in the settings.py
:
# ...
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'image_uploader_widget',
]
# ...
And go to use it with your forms: