Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 515 Bytes

File metadata and controls

22 lines (15 loc) · 515 Bytes

Images

from wagtail.core.models import Page
from wagtail.core.fields import StreamField

from wagtailnhsukfrontend.blocks import ImageBlock


class HomePage(Page):

    parent_page_types = ['wagtailcore.Page']

    body = StreamField([
        ...
        ('captionable_image', ImageBlock()),
        ...

Reference