This is my StreamField:
body = StreamField([
('heading', blocks.CharBlock(classname="full title")),
('paragraph', blocks.RichTextBlock()),
('image', ImageChooserBlock()),
])
And my question is: how to add my own Block that I can pass to StreamField? I meant block that contains multiple images, something like block? I didn't find answer for my question in wagtail docs.