An alternative implementation of the Wagtail StreamField.
Project description
Wagtail AlternateStreamField
This project provides an alternate implementation of Wagtail's StreamField. This was created to resolve issues with performance for more complicated block structures.
Basic Installation and Usage
To install use pip:
pip install wagtail-altstreamfield
Add "altstreamfield" to your Django Project's INSTALLED_APPS
list.
Create some custom blocks and a wagtail.core.models.Page
subclass like the following:
#filename: [yourapp]/models.py
from django.db import models
from wagtail.core.models import Page
from wagtail.admin.edit_handlers import FieldPanel, StreamFieldPanel
from altstreamfield.edit_handlers import AltStreamFieldPanel
from altstreamfield.fields import AltStreamField
from altstreamfield.blocks import (
StreamBlock,
StructBlock,
BooleanField,
CharField,
ChoiceField,
DocumentChooserField,
ImageChooserField,
IntegerField,
RichTextField,
StreamBlockField,
TextField,
)
# Create some custom blocks
HEADING_TYPE_CHOICES = (
('h1', 'H1'),
('h2', 'H2'),
('h3', 'H3'),
('h4', 'H4'),
('h5', 'H5'),
('h6', 'H6'),
)
class Heading(StructBlock):
heading_type = ChoiceField(choices=HEADING_TYPE_CHOICES, required=True)
text = CharField()
class Meta:
icon = 'title'
class Paragraph(StructBlock):
text = RichTextField()
class Meta:
icon = 'pilcrow'
class DocumentLink(StructBlock):
title = CharField()
document = DocumentChooserField()
class Meta:
icon = 'doc-empty'
class SimpleStreamBlock(StreamBlock):
heading = Heading()
paragraph = Paragraph()
document = DocumentLink()
# Create your models here.
class HomePage(Page):
body = AltStreamField(SimpleStreamBlock)
content_panels = Page.content_panels + [
AltStreamFieldPanel('body', classname='full'),
]
If you are creating a large number of blocks it is a good idea to separate the blocks into a separate module or modules.
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
wagtail-altstreamfield-0.0.3.tar.gz
(579.5 kB
view hashes)
Built Distribution
Close
Hashes for wagtail-altstreamfield-0.0.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd5ad14782260bdb8f0adbe37eb6486ae02e990a86930c5b9fac99ae74bc766a |
|
MD5 | ddc58fec984630b1fdf7ecb44f3acff2 |
|
BLAKE2b-256 | 978c6316e4667123e816620abab797187b2876658e0a228fb756c4de704ce643 |
Close
Hashes for wagtail_altstreamfield-0.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e359c2340e9b6e85f26df1eafb5307b87e8da49a7ab459930eea81ac9547bc5b |
|
MD5 | eee007e949cd49889b7d41c43d65f46c |
|
BLAKE2b-256 | b2940ab0ec610785f11cef709f6121fba141b034676b8f65bc808cd138889abd |