Common StreamField blocks for Wagtail.
Check out Awesome Wagtail for more awesome packages and resources from the Wagtail community.
Assuming you have a Wagtail project up and running:
pip install wagtailcommonblocksAdd commonblocks to your settings.py in the INSTALLED_APPS section, before the core wagtail packages:
...
'commonblocks',
'wagtail.contrib.wagtailsitemaps',
...- CommonPageChooserBlock
- SimpleRichTextBlock
- CommonImageBlock
- CommonQuoteBlock
- CommonHeadingBlock
- CommonVideoBlock
- CommonInternalLink
- CommonExternalLink
- CommonLinksBlock
You can override the headings of the CommonHeadingBlock block:
...
COMMONBLOCKS_HEADING = (
('h1', 'h1'),
('h2', 'h2'),
)- 0.0.3 compatible with Wagtail 1.5
- 0.0.2 compatible with Wagtail 1.2
- 0.0.1 compatible with Wagtail 1.1