12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- from wagtail.wagtailimages.blocks import ImageChooserBlock
- from wagtail.wagtailembeds.blocks import EmbedBlock
- from wagtail.wagtailcore.blocks import (
- CharBlock, ChoiceBlock, RichTextBlock, StreamBlock, StructBlock, TextBlock,
- )
- class ImageBlock(StructBlock):
- """
- Custom `StructBlock` for utilizing images with associated caption and
- attribution data
- """
- image = ImageChooserBlock(required=True)
- caption = CharBlock(required=False)
- attribution = CharBlock(required=False)
- class Meta:
- icon = 'image'
- template = "blocks/image_block.html"
- class HeadingBlock(StructBlock):
- """
- Custom `StructBlock` that allows the user to select h2 - h4 sizes for headers
- """
- heading_text = CharBlock(classname="title", required=True)
- size = ChoiceBlock(choices=[
- ('', 'Select a header size'),
- ('h2', 'H2'),
- ('h3', 'H3'),
- ('h4', 'H4')
- ], blank=True, required=False)
- class Meta:
- icon = "title"
- template = "blocks/heading_block.html"
- class BlockQuote(StructBlock):
- """
- Custom `StructBlock` that allows the user to attribute a quote to the author
- """
- text = TextBlock()
- attribute_name = CharBlock(
- blank=True, required=False, label='e.g. Mary Berry')
- class Meta:
- icon = "fa-quote-left"
- template = "blocks/blockquote.html"
- # StreamBlocks
- class BaseStreamBlock(StreamBlock):
- """
- Define the custom blocks that `StreamField` will utilize
- """
- heading_block = HeadingBlock()
- paragraph_block = RichTextBlock(
- icon="fa-paragraph",
- template="blocks/paragraph_block.html"
- )
- image_block = ImageBlock()
- block_quote = BlockQuote()
- embed_block = EmbedBlock(
- help_text='Insert an embed URL e.g https://www.youtube.com/embed/SGJFWirQ3ks',
- icon="fa-s15",
- template="blocks/embed_block.html")
|