5 lines
153 B
Python
5 lines
153 B
Python
|
from wagtail.blocks import RichTextBlock
|
||
|
|
||
|
from base.blocks import StreamBlock
|
||
|
class BlogPostBlock(StreamBlock):
|
||
|
paragraph = RichTextBlock(blank=True)
|