This is a fork of Pinax Images with some additions and changes that I thought Pinax Images missed.
- Removed "preview" field in Admin.py. The Tag did not work and there already is a clickable link to the image in the Image field
- Added "ID" readonly field to the inline-admin, so that pinax-blog images are usable again.
- Added "Alt text" field to make alt-texts in template possible
- Added image optimization using django-optimized-image
So far, the only way to install it, is to install it from source.
If you want to use it together with pinax-blog, you have to install the original pinax-images package first!
- Open a commandline
- Install the package with
pip install git+https://github.com/doktormerlin/pinax-images-rethought.git
- Open a commandline
- Clone this repository with
git clone https://github.com/doktormerlin/pinax-images-rethought
- CD To the cloned directory with
cd pinax-images-rethought
- Install the package using
python setup.py install
Add OPTIMIZED_IMAGE_METHOD = 'pillow'
to your settings.py
For other usage, please take a look at the original README file