Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 527 Bytes

warning_callout.md

File metadata and controls

20 lines (15 loc) · 527 Bytes

Warning Callout

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

from wagtailnhsukfrontend.blocks import WarningCalloutBlock

class MyPage(Page):
  body = StreamField([
      ...
      ('warning_callout', WarningCalloutBlock()),
      ...
  ], use_json_field=True)

Reference