Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 512 Bytes

clickable_card.md

File metadata and controls

21 lines (15 loc) · 512 Bytes

Clickable Card

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

from wagtailnhsukfrontend.blocks import CardClickableBlock,

class MyPage(Page):
  body = StreamField([
      ...
      ('clickable_card', CardClickableBlock()),
      ...
  ])

Reference