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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file wagtail-altstreamfield-0.0.13.tar.gz.
File metadata
- Download URL: wagtail-altstreamfield-0.0.13.tar.gz
- Upload date:
- Size: 608.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
416eec41f7c8f7decd2e8aa0a1076c8b0794c148513132c87237233d7d64bd6b
|
|
| MD5 |
7c131f6eee4369b221fc7c1ff800e230
|
|
| BLAKE2b-256 |
cd018273684fa9f98439122535926a68c5e4bcefbf341a1653f688abdc841e71
|
File details
Details for the file wagtail_altstreamfield-0.0.13-py3-none-any.whl.
File metadata
- Download URL: wagtail_altstreamfield-0.0.13-py3-none-any.whl
- Upload date:
- Size: 621.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6dcf09563f334a860b7effba366d5ad9ab2c814ab837f6ce69622fb7f4bfe2a8
|
|
| MD5 |
99c2f654001ea9e28a2ad8a3fc62143f
|
|
| BLAKE2b-256 |
b8bd1765bcaa1d7b2d7c40637de13a6c5d7a2bba01cf76e1e46bb45a4ff1842a
|