9 lines
164 B
Python
9 lines
164 B
Python
from wagtail.fields import StreamField
|
|
|
|
from dnscms.blocks import BASE_BLOCKS
|
|
|
|
CommonStreamField = StreamField(
|
|
BASE_BLOCKS,
|
|
default=[("paragraph", "")],
|
|
)
|