Dynamic, interactive grid layout for the Django CMS Wagtail.
Project description
Wagtail Gridder
Wagtail Gridder is a Bootstrap 4 enabled layout for the Wagtail CMS. Grid Items are created within categories and displayed on a Grid Index Page. The JavaScript libraries Gridder and MixItUp are included.
Requirements
- Django >= 3.2
- Wagtail >= 3.0
- Bootstrap >= 4
Installation
This installation assumes that you already have Django 3.2+ and Wagtail 3.0+ installed as part of your project.
Wagtail Gridder can then be installed like most Django apps. First, install it into your venv
:
pip install wagtailgridder
Then add wagtailgridder
to your list of INSTALLED_APPS
in your Django settings file. You will also need to add wagtail.contrib.modeladmin
, if you haven't already. Your final settings may look something like this:
WAGTAIL_APPS = [
'taggit',
'modelcluster',
'wagtail.core',
'wagtail.admin',
'wagtail.documents',
'wagtail.snippets',
'wagtail.users',
'wagtail.images',
'wagtail.embeds',
'wagtail.search',
'wagtail.sites',
]
WAGTAIL_CONTRIB_APPS = [
'wagtailgridder',
'wagtail.contrib.modeladmin',
]
INSTALLED_APPS = INSTALLED_APPS + WAGTAIL_APPS + WAGTAIL_CONTRIB_APPS
This Wagtail Gridder template extends base.html
, with the hope that this allows inclusion or your site's top and bottom navigation without much effort. There is an example base.html provided.
Then log into the Wagtail admin, and you should see a "Grid Layouts" section of the menu. The first thing you will want to do is add some "Grid Categories." After that, you can create "Grid Items" (the cards, pictured below) and put them together on a "Grid Index Page."
Settings
WAGTAILGRIDDER_CLEAR_CACHE = False
The default Wagtail Gridder template caches the grid display area to reduce the number of queries performed. Setting WAGTAILGRIDDER_CLEAR_CACHE = True
in your Django settings will clear the entire Django cache after a page is edited. This approach is necessary, as Django does not currently support deletion from the cache by pattern. Setting this to True
will clear your cache every time you save a Wagtail page. If anyone knows of a better solution that works for Django's supported cache systems, please let us know!
WAGTAILGRIDDER_GRID_ITEM_PARENT_PAGE_TYPES = ["GridIndexPage"]
By default, GridItem pages may only be created as children of GridIndexPage pages. To
allow GridItem pages under any parent, set
WAGTAILGRIDDER_GRID_ITEM_PARENT_PAGE_TYPES = None
. See the Wagtail Documentation
for more
WAGTAILGRIDDER_GRID_INDEX_PAGE_SUBPAGE_TYPES = ["GridItem"]
By default, GridIndexPage pages may only have GridItem pages as children. To allow GridIndexPage pages to have other child types, set WAGTAILGRIDDER_GRID_INDEX_PAGE_SUBPAGE_TYPES = None
. See the Wagtail Documentation for more details.
GridIndexPage
is inherited from an abstract model, GridIndexPageAbstract, which you may wish to customize.
Screenshots
Grid Index Page:
Grid Index Page, with Grid Item expanded:
Optional featured hero region:
Grid Item landing page:
Editing a Grid Item:
Editing a Grid Index Page:
Maintainer
This package is maintained by the staff of Wharton Research Data Services. We are thrilled that The Wharton School allows us a certain amount of time to contribute to open-source projects. We add features as they are necessary for our projects, and try to keep up with Issues and Pull Requests as best we can. Due to constraints of time (our full time jobs!), Feature Requests without a Pull Request may not be implemented, but we are always open to new ideas and grateful for contributions and our package users.
Contributors (Thank You!)
Project details
Release history Release notifications | RSS feed
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 wagtailgridder-1.0.4.tar.gz
.
File metadata
- Download URL: wagtailgridder-1.0.4.tar.gz
- Upload date:
- Size: 802.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1933cdf1e2c72258066a9a3f3710b328133ecfa15949461d404b1100d1e02003 |
|
MD5 | b06b15b9b5470d374404a2fc41305108 |
|
BLAKE2b-256 | 59a0cad553eda3d93265853e1f9ec9753810765622026848eb4ca29fba15eca1 |
File details
Details for the file wagtailgridder-1.0.4-py3-none-any.whl
.
File metadata
- Download URL: wagtailgridder-1.0.4-py3-none-any.whl
- Upload date:
- Size: 37.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b365509c41051b0a58f6cf7a2b5ef06e98f049385c8ff073774ff7aaa8608cf |
|
MD5 | 2e75b1df3529e5edd1de830160a6d066 |
|
BLAKE2b-256 | b143ce509cc7403f87154026c8a5d26fd5fc2ca00c0b525e3a5fc50da755caac |