An image gallery plugin for Wagtail
Project description
Wagtail Photo Gallery
With this extention you are just a few steps away from a simple photo gallery for your wagtail page.
The gallery is configurable with the wagtail admin panel and is suited for large amounts of photos.
The key idea of this package is to store and manage photos independently of the usual wagtail images. Instead, all photos are assigned to albums and can be managed by a drag-and-drop sorting widget (which also supports item selection for mass-dragging and deletion).
To organize your photos, a Collection
is assigned to each album, by default the Root Collection
is used.
Embedding the photo gallery within a StreamField
is now done by adding a GalleryBlock
with reference to the desired Collection
.
Installation
pip install wagtail-photo-gallery[pillow]
# or
pip install wagtail-photo-gallery[pillow-simd]
If you need the fastest possible image uploading (Faster resizing) use pillow-simd
.
Settings
INSTALLED_APPS = [
'wagtail_photo_gallery',
'wagtail.contrib.modeladmin',
'wagtail.contrib.routable_page',
'generic_chooser',
]
Update your database structure using (remember to create a backup first):
./manage.py migrate
Example
Once you've installed this addon and configured the settings as above,
all you need to do is to inherit from ImageGalleryMixin
and to add GalleryBlock
to your StreamField
.
from wagtail.core.models import Page
from wagtail.core.fields import StreamField
from wagtail.admin.edit_handlers import StreamFieldPanel
from wagtail_photo_gallery.models import GalleryBlock, ImageGalleryMixin
class YourWagtailPage(ImageGalleryMixin, Page):
content = StreamField([
#...
("gallery", GalleryBlock()),
#...
], blank=True)
# content panel for the CMS (same as always)
content_panels = Page.content_panels + [
StreamFieldPanel("content"),
]
If you want to use the predefined CSS-flexbox layout for the albums,
you need to include the following css code in your gallery page (YourWagtailPage
)
{% include 'wagtail_photo_gallery/extra_css.html' %}
Credits
This project was initially planned as a port of django-photo-gallery as the name of this addon suggests. Never the less, almost the entrie code is changed completely now due to incompability with wagtail and the incorporation of django-modelcluster.
Contributions to this project are welcome!
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file wagtail_photo_gallery-0.1.2.tar.gz
.
File metadata
- Download URL: wagtail_photo_gallery-0.1.2.tar.gz
- Upload date:
- Size: 29.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 137636f75f3faff5f7ef84ef3967d71a0499f844c8c8a07874dd9ec24203bb2c |
|
MD5 | 9d34365d3a017f6a54e352d37a358b6d |
|
BLAKE2b-256 | 541a0fd03158fbd97097f427d4331e359aad17b57c52eaf92b23c551562a39a6 |
File details
Details for the file wagtail_photo_gallery-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: wagtail_photo_gallery-0.1.2-py3-none-any.whl
- Upload date:
- Size: 38.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b63b8baae42905ea307547d6e99b260c0bfae2cfa9fcc66a877a6d37bb02cc2a |
|
MD5 | 001b22c377410374792eedaff94f0253 |
|
BLAKE2b-256 | b607963a3568bd5cbc13ef3d7cfc30735f399830f21193bc61aba379ddf01ba5 |