|
@@ -6,6 +6,10 @@ from wagtail.wagtailcore.blocks import (
|
|
|
|
|
|
|
|
|
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)
|
|
@@ -16,6 +20,9 @@ class ImageBlock(StructBlock):
|
|
|
|
|
|
|
|
|
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'),
|
|
@@ -30,6 +37,9 @@ class HeadingBlock(StructBlock):
|
|
|
|
|
|
|
|
|
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. Guy Picciotto')
|
|
@@ -41,6 +51,9 @@ class BlockQuote(StructBlock):
|
|
|
|
|
|
# StreamBlocks
|
|
|
class BaseStreamBlock(StreamBlock):
|
|
|
+ """
|
|
|
+ Define the custom blocks that `StreamField` will utilize
|
|
|
+ """
|
|
|
heading_block = HeadingBlock()
|
|
|
paragraph_block = RichTextBlock(
|
|
|
icon="fa-paragraph",
|