StreamField block reference¶
This document details the block types provided by Wagtail for use in StreamField, and how they can be combined into new block types.
Note
While block definitions look similar to model fields, they are not the same thing. Blocks are only valid within a StreamField - using them in place of a model field will not work.
- class wagtail.fields.StreamField(block_types, blank=False, min_num=None, max_num=None, block_counts=None, collapsed=False)¶
A model field for representing long-form content as a sequence of content blocks of various types. See How to use StreamField for mixed content.
- Parameters:
block_types – A list of block types, passed as either a list of
(name, block_definition)tuples or aStreamBlockinstance.blank – When false (the default), at least one block must be provided for the field to be considered valid.
min_num – Minimum number of sub-blocks that the stream must have.
max_num – Maximum number of sub-blocks that the stream may have.
block_counts – Specifies the minimum and maximum number of each block type, as a dictionary mapping block names to dicts with (optional)
min_numandmax_numfields.collapsed – When true, all blocks are initially collapsed.
body = StreamField([
('heading', blocks.CharBlock(form_classname="title")),
('paragraph', blocks.RichTextBlock()),
('image', ImageBlock()),
], block_counts={
'heading': {'min_num': 1},
'image': {'max_num': 5},
})
Block options and methods¶
All block definitions accept the following optional keyword arguments or Meta class attributes:
defaultThe default value (or a callable that returns the value) that a new ‘empty’ block should receive.
labelThe label to display in the editor interface when referring to this block - defaults to a prettified version of the block name (or, in a context where no name is assigned - such as within a
ListBlock- the empty string).
iconThe name of the icon to display for this block type in the editor. For more details, see our icons overview.
templateThe path to a Django template that will be used to render this block on the front end. See Template rendering
groupThe group used to categorize this block. Any blocks with the same group name will be shown together in the editor interface with the group name as a heading.
StreamField blocks can have previews that will be shown inside the block picker. To accommodate the feature, all block definitions also accept the following options:
preview_valueThe placeholder value (or a callable that returns the value) that will be used for rendering the preview. See
get_preview_value()for more details.
preview_templateThe template that is used to render the preview. See
get_preview_template()for more details.
descriptionThe description of the block to be shown to editors. See
get_description()for more details.
All block definitions have the following methods and properties that can be overridden:
- class wagtail.blocks.Block(*args, **kwargs)¶
- get_context(value, parent_context=None)¶
Return a dict of context variables (derived from the block
valueand combined with theparent_context) to be used as the template context when rendering this value through a template. See the usage example for more details.
- get_template(value=None, context=None)¶
Return the template to use for rendering the block if specified. This method allows for dynamic templates based on the block instance and a given
value. See the usage example for more details.
- get_preview_value()¶
Return the placeholder value that will be used for rendering the block’s preview. By default, the value is the
preview_valuefrom the block’s options if provided. If it’s a callable, it will be evaluated at runtime. Ifpreview_valueis not provided, thedefaultis used as fallback. This method can also be overridden to provide a dynamic preview value.
- get_preview_context(value, parent_context=None)¶
Return a dict of context variables to be used as the template context when rendering the block’s preview. The
valueargument is the value returned byget_preview_value(). Theparent_contextargument contains the following variables:request: The current request object.block_def: The block instance.block_class: The block class.bound_block: ABoundBlockinstance representing the block and its value.
If the global preview template is used, the block will be rendered as the main content using
{% include_block %}, which in turn usesget_context(). As a result, the context returned by this method will be available as theparent_contextforget_context()when the preview is rendered.
- get_preview_template(value, context=None)¶
Return the template to use for rendering the block’s preview. The
valueargument is the value returned byget_preview_value(). Thecontextargument contains the variables listed for theparent_contextargument ofget_preview_context()above (and not the context returned by that method itself).Note that the preview template is used to render a complete HTML page of the preview, not just an HTML fragment for the block. The method returns the
preview_templateattribute from the block’s options if provided, and falls back to the global preview template otherwise.If the global preview template is used, the block will be rendered as the main content using
{% include_block %}, which in turn usesget_template().
- get_description()¶
Return the description of the block to be shown to editors as part of the preview. For field block types, it will fall back to
help_textif not provided.
- is_previewable¶
Determine whether the block is previewable in the block picker. By default, it automatically detects when a custom template is used or the the global preview template is overridden and a preview value is provided. If the block is previewable by other means, override this property to return
True. To turn off previews for the block, set it toFalse.
Field block types¶
- class wagtail.blocks.FieldBlock(*args, **kwargs)¶
Bases:
BlockA block that wraps a Django form field
The parent class of all StreamField field block types.
- class wagtail.blocks.CharBlock(*args, **kwargs)¶
Bases:
FieldBlockA single-line text input. The following keyword arguments are accepted in addition to the standard ones:
- Parameters:
required – If true (the default), the field cannot be left blank.
max_length – The maximum allowed length of the field.
min_length – The minimum allowed length of the field.
help_text – Help text to display alongside the field.
search_index – If false (default true), the content of this block will not be indexed for searching.
validators – A list of validation functions for the field (see Django Validators).
form_classname – A value to add to the form field’s
classattribute when rendered on the page editing form.form_attrs – A dictionary of additional attributes to add to the form field’s wrapper element when rendered on the page editing form.
- class wagtail.blocks.TextBlock(*args, **kwargs)¶
Bases:
FieldBlockA multi-line text input. As with
CharBlock, the following keyword arguments are accepted in addition to the standard ones:- Parameters:
required – If true (the default), the field cannot be left blank.
max_length – The maximum allowed length of the field.
min_length – The minimum allowed length of the field.
help_text – Help text to display alongside the field.
search_index – If false (default true), the content of this block will not be indexed for searching.
rows – Number of rows to show on the textarea (defaults to 1).
validators – A list of validation functions for the field (see Django Validators).
form_classname – A value to add to the form field’s
classattribute when rendered on the page editing form.form_attrs – A dictionary of additional attributes to add to the form field’s wrapper element when rendered on the page editing form.
- class wagtail.blocks.EmailBlock(*args, **kwargs)¶
Bases:
FieldBlockA single-line email input that validates that the value is a valid e-mail address. The following keyword arguments are accepted in addition to the standard ones:
- Parameters:
required – If true (the default), the field cannot be left blank.
help_text – Help text to display alongside the field.
validators – A list of validation functions for the field (see Django Validators).
form_classname – A value to add to the form field’s
classattribute when rendered on the page editing form.form_attrs – A dictionary of additional attributes to add to the form field’s wrapper element when rendered on the page editing form.
- class wagtail.blocks.IntegerBlock(*args, **kwargs)¶
Bases:
FieldBlockA single-line integer input that validates that the value is a valid whole number. The following keyword arguments are accepted in addition to the standard ones:
- Parameters:
required – If true (the default), the field cannot be left blank.
max_value – The maximum allowed numeric value of the field.
min_value – The minimum allowed numeric value of the field.
help_text – Help text to display alongside the field.
validators – A list of validation functions for the field (see Django Validators).
form_classname – A value to add to the form field’s
classattribute when rendered on the page editing form.form_attrs – A dictionary of additional attributes to add to the form field’s wrapper element when rendered on the page editing form.
- class wagtail.blocks.FloatBlock(*args, **kwargs)¶
Bases:
FieldBlockA single-line Float input that validates that the value is a valid floating point number. The following keyword arguments are accepted in addition to the standard ones:
- Parameters:
required – If true (the default), the field cannot be left blank.
max_value – The maximum allowed numeric value of the field.
min_value – The minimum allowed numeric value of the field.
help_text – Help text to display alongside the field.
validators – A list of validation functions for the field (see Django Validators).
form_classname – A value to add to the form field’s
classattribute when rendered on the page editing form.form_attrs – A dictionary of additional attributes to add to the form field’s wrapper element when rendered on the page editing form.
- class wagtail.blocks.DecimalBlock(*args, **kwargs)¶
Bases:
FieldBlockA single-line decimal input that validates that the value is a valid decimal number. The following keyword arguments are accepted in addition to the standard ones:
- Parameters:
required – If true (the default), the field cannot be left blank.
help_text – Help text to display alongside the field.
max_value – The maximum allowed numeric value of the field.
min_value – The minimum allowed numeric value of the field.
max_digits – The maximum number of digits allowed in the number. This number must be greater than or equal to
decimal_places.decimal_places – The number of decimal places to store with the number.
validators – A list of validation functions for the field (see Django Validators).
form_classname – A value to add to the form field’s
classattribute when rendered on the page editing form.form_attrs – A dictionary of additional attributes to add to the form field’s wrapper element when rendered on the page editing form.
- class wagtail.blocks.RegexBlock(*args, **kwargs)¶
Bases:
FieldBlockA single-line text input that validates a string against a regular expression. The regular expression used for validation must be supplied as the first argument, or as the keyword argument
regex.blocks.RegexBlock(regex=r'^[0-9]{3}$', error_messages={ 'invalid': "Not a valid library card number." })
The following keyword arguments are accepted in addition to the standard ones:
- Parameters:
regex – Regular expression to validate against.
error_messages – Dictionary of error messages, containing either or both of the keys
required(for the message shown on an empty value) orinvalid(for the message shown on a non-matching value).required – If true (the default), the field cannot be left blank.
help_text – Help text to display alongside the field.
max_length – The maximum allowed length of the field.
min_length – The minimum allowed length of the field.
validators – A list of validation functions for the field (see Django Validators).
form_classname – A value to add to the form field’s
classattribute when rendered on the page editing form.form_attrs – A dictionary of additional attributes to add to the form field’s wrapper element when rendered on the page editing form.
- class wagtail.blocks.URLBlock(*args, **kwargs)¶
Bases:
FieldBlockA single-line text input that validates that the string is a valid URL. The following keyword arguments are accepted in addition to the standard ones:
- Parameters:
required – If true (the default), the field cannot be left blank.
max_length – The maximum allowed length of the field.
min_length – The minimum allowed length of the field.
help_text – Help text to display alongside the field.
validators – A list of validation functions for the field (see Django Validators).
form_classname – A value to add to the form field’s
classattribute when rendered on the page editing form.form_attrs – A dictionary of additional attributes to add to the form field’s wrapper element when rendered on the page editing form.
- class wagtail.blocks.BooleanBlock(*args, **kwargs)¶
Bases:
FieldBlockA checkbox. The following keyword arguments are accepted in addition to the standard ones:
- Parameters:
required – If true (the default), the checkbox must be ticked to proceed. As with Django’s
BooleanField, a checkbox that can be left ticked or unticked must be explicitly denoted withrequired=False.help_text – Help text to display alongside the field.
form_classname – A value to add to the form field’s
classattribute when rendered on the page editing form.form_attrs – A dictionary of additional attributes to add to the form field’s wrapper element when rendered on the page editing form.
- class wagtail.blocks.DateBlock(*args, **kwargs)¶
Bases:
FieldBlockA date picker. The following keyword arguments are accepted in addition to the standard ones:
- Parameters:
format – Date format. This must be one of the recognized formats listed in the
DATE_INPUT_FORMATSsetting. If not specified Wagtail will use theWAGTAIL_DATE_FORMATsetting with fallback to"%Y-%m-%d".required – If true (the default), the field cannot be left blank.
help_text – Help text to display alongside the field.
validators – A list of validation functions for the field (see Django Validators).
form_classname – A value to add to the form field’s
classattribute when rendered on the page editing form.form_attrs – A dictionary of additional attributes to add to the form field’s wrapper element when rendered on the page editing form.
- class wagtail.blocks.TimeBlock(*args, **kwargs)¶
Bases:
FieldBlockA time picker. The following keyword arguments are accepted in addition to the standard ones:
- Parameters:
format – Time format. This must be one of the recognized formats listed in the
TIME_INPUT_FORMATSsetting. If not specified Wagtail will use theWAGTAIL_TIME_FORMATsetting with fallback to"%H:%M".required – If true (the default), the field cannot be left blank.
help_text – Help text to display alongside the field.
validators – A list of validation functions for the field (see Django Validators).
form_classname – A value to add to the form field’s
classattribute when rendered on the page editing form.form_attrs – A dictionary of additional attributes to add to the form field’s wrapper element when rendered on the page editing form.
- class wagtail.blocks.DateTimeBlock(*args, **kwargs)¶
Bases:
FieldBlockA combined date/time picker. The following keyword arguments are accepted in addition to the standard ones:
- Parameters:
format – Date/time format. This must be one of the recognized formats listed in the
DATETIME_INPUT_FORMATSsetting. If not specified Wagtail will use theWAGTAIL_DATETIME_FORMATsetting with fallback to"%Y-%m-%d %H:%M".required – If true (the default), the field cannot be left blank.
help_text – Help text to display alongside the field.
validators – A list of validation functions for the field (see Django Validators).
form_classname – A value to add to the form field’s
classattribute when rendered on the page editing form.form_attrs – A dictionary of additional attributes to add to the form field’s wrapper element when rendered on the page editing form.
- class wagtail.blocks.RichTextBlock(*args, **kwargs)¶
Bases:
FieldBlockA WYSIWYG editor for creating formatted text including links, bold / italics etc. The following keyword arguments are accepted in addition to the standard ones:
- Parameters:
editor – The rich text editor to be used (see WAGTAILADMIN_RICH_TEXT_EDITORS).
features – Specifies the set of features allowed (see Limiting features in a rich text field).
required – If true (the default), the field cannot be left blank.
max_length – The maximum allowed length of the field. Only text is counted; rich text formatting, embedded content and paragraph / line breaks do not count towards the limit.
min_length – The minimum allowed length of the field. Only text is counted; rich text formatting, embedded content and paragraph / line breaks do not count towards the limit.
search_index – If false (default true), the content of this block will not be indexed for searching.
help_text – Help text to display alongside the field.
validators – A list of validation functions for the field (see Django Validators).
form_classname – A value to add to the form field’s
classattribute when rendered on the page editing form.form_attrs – A dictionary of additional attributes to add to the form field’s wrapper element when rendered on the page editing form.
- class wagtail.blocks.RawHTMLBlock(*args, **kwargs)¶
Bases:
FieldBlockA text area for entering raw HTML which will be rendered unescaped in the page output. The following keyword arguments are accepted in addition to the standard ones:
- Parameters:
required – If true (the default), the field cannot be left blank.
max_length – The maximum allowed length of the field.
min_length – The minimum allowed length of the field.
help_text – Help text to display alongside the field.
validators – A list of validation functions for the field (see Django Validators).
form_classname – A value to add to the form field’s
classattribute when rendered on the page editing form.form_attrs – A dictionary of additional attributes to add to the form field’s wrapper element when rendered on the page editing form.
Warning
When this block is in use, there is nothing to prevent editors from inserting malicious scripts into the page, including scripts that would allow the editor to acquire administrator privileges when another administrator views the page. Do not use this block unless your editors are fully trusted.
- class wagtail.blocks.BlockQuoteBlock(*args, **kwargs)¶
Bases:
TextBlockA text field, the contents of which will be wrapped in an HTML <blockquote> tag pair in the page output. The following keyword arguments are accepted in addition to the standard ones:
- Parameters:
required – If true (the default), the field cannot be left blank.
max_length – The maximum allowed length of the field.
min_length – The minimum allowed length of the field.
help_text – Help text to display alongside the field.
validators – A list of validation functions for the field (see Django Validators).
form_classname – A value to add to the form field’s
classattribute when rendered on the page editing form.form_attrs – A dictionary of additional attributes to add to the form field’s wrapper element when rendered on the page editing form.
- class wagtail.blocks.ChoiceBlock(*args, **kwargs)¶
Bases:
BaseChoiceBlockA dropdown select box for choosing one item from a list of choices. The following keyword arguments are accepted in addition to the standard ones:
- Parameters:
choices – A list of choices, in any format accepted by Django’s
choicesparameter for model fields, or a callable returning such a list.required – If true (the default), the field cannot be left blank.
help_text – Help text to display alongside the field.
search_index – If false (default true), the content of this block will not be indexed for searching.
widget – The form widget to render the field with (see Django Widgets).
validators – A list of validation functions for the field (see Django Validators).
form_classname – A value to add to the form field’s
classattribute when rendered on the page editing form.form_attrs – A dictionary of additional attributes to add to the form field’s wrapper element when rendered on the page editing form.
ChoiceBlockcan also be subclassed to produce a reusable block with the same list of choices everywhere it is used. For example, a block definition such as:blocks.ChoiceBlock(choices=[ ('tea', 'Tea'), ('coffee', 'Coffee'), ], icon='cup')
Could be rewritten as a subclass of ChoiceBlock:
class DrinksChoiceBlock(blocks.ChoiceBlock): choices = [ ('tea', 'Tea'), ('coffee', 'Coffee'), ] class Meta: icon = 'cup'
StreamFielddefinitions can then refer toDrinksChoiceBlock()in place of the fullChoiceBlockdefinition. Note that this only works whenchoicesis a fixed list, not a callable.
- class wagtail.blocks.MultipleChoiceBlock(*args, **kwargs)¶
Bases:
BaseChoiceBlockA select box for choosing multiple items from a list of choices. The following keyword arguments are accepted in addition to the standard ones:
- Parameters:
choices – A list of choices, in any format accepted by Django’s
choicesparameter for model fields, or a callable returning such a list.required – If true (the default), the field cannot be left blank.
help_text – Help text to display alongside the field.
search_index – If false (default true), the content of this block will not be indexed for searching.
widget – The form widget to render the field with (see Django Widgets).
validators – A list of validation functions for the field (see Django Validators).
form_classname – A value to add to the form field’s
classattribute when rendered on the page editing form.form_attrs – A dictionary of additional attributes to add to the form field’s wrapper element when rendered on the page editing form.
- class wagtail.blocks.PageChooserBlock(*args, **kwargs)¶
Bases:
ChooserBlockA control for selecting a page object, using Wagtail’s page browser. The following keyword arguments are accepted in addition to the standard ones:
- Parameters:
required – If true (the default), the field cannot be left blank.
page_type – Restrict choices to one or more specific page types; by default, any page type may be selected. Can be specified as a page model class, model name (as a string), or a list or tuple of these.
can_choose_root – Defaults to false. If true, the editor can choose the tree root as a page. Normally this would be undesirable since the tree root is never a usable page, but in some specialized cases, it may be appropriate. For example, a block providing a feed of related articles could use a PageChooserBlock to select which subsection of the site articles will be taken from, with the root corresponding to ‘everywhere’.
- class wagtail.documents.blocks.DocumentChooserBlock(*args, **kwargs)¶
Bases:
BaseDocumentChooserBlockA control to allow the editor to select an existing document object, or upload a new one. The following additional keyword argument is accepted:
- Parameters:
required – If true (the default), the field cannot be left blank.
- class wagtail.images.blocks.ImageBlock(*args, **kwargs)¶
Bases:
StructBlockAn usage of ImageChooserBlock with support for alt text. For backward compatibility, this block overrides necessary methods to change the StructValue to be an Image model instance, making it compatible in places where ImageChooserBlock was used.
An accessibility-focused control to allow the editor to select an existing image, or upload a new one. This has provision for adding alt text and indicating whether images are purely decorative, and is the Wagtail-recommended approach to uploading images. The following additional keyword argument is accepted:
- Parameters:
required – If true (the default), the field cannot be left blank.
ImageBlockincorporates backwards compatibility withImageChooserBlock. A block initially defined asImageChooserBlockcan be directly replaced withImageBlock- existing data created withImageChooserBlockwill be handled automatically and changed toImageBlock’s data format when the field is resaved.
- class wagtail.images.blocks.ImageChooserBlock(*args, **kwargs)¶
Bases:
ChooserBlockA control to allow the editor to select an existing image, or upload a new one. The following additional keyword argument is accepted:
- Parameters:
required – If true (the default), the field cannot be left blank.
- class wagtail.snippets.blocks.SnippetChooserBlock(*args, **kwargs)¶
Bases:
ChooserBlockA control to allow the editor to select a snippet object. Requires one positional argument: the snippet class to choose from. The following additional keyword argument is accepted:
- Parameters:
required – If true (the default), the field cannot be left blank.
- class wagtail.embeds.blocks.EmbedBlock(*args, **kwargs)¶
Bases:
URLBlockA field for the editor to enter a URL to a media item (such as a YouTube video) to appear as embedded media on the page. The following keyword arguments are accepted in addition to the standard ones:
- Parameters:
required – If true (the default), the field cannot be left blank.
max_width – The maximum width of the embed, in pixels; this will be passed to the provider when requesting the embed.
max_height – The maximum height of the embed, in pixels; this will be passed to the provider when requesting the embed.:param max_length: The maximum allowed length of the field.
min_length – The minimum allowed length of the field.
help_text – Help text to display alongside the field.
Structural block types¶
- class wagtail.blocks.StaticBlock(*args, **kwargs)¶
Bases:
BlockA block that just ‘exists’ and has no fields.
A block which doesn’t have any fields, thus passes no particular values to its template during rendering. This can be useful if you need the editor to be able to insert some content that is always the same or doesn’t need to be configured within the page editor, such as an address, embed code from third-party services, or more complex pieces of code if the template uses template tags. The following additional keyword argument is accepted:
- Parameters:
admin_text – A text string to display in the admin when this block is used. By default, some default text (which contains the
labelkeyword argument if you pass it) will be displayed in the editor interface, so that the block doesn’t look empty, but this can be customized by passingadmin_text:
blocks.StaticBlock( admin_text='Latest posts: no configuration needed.', # or admin_text=mark_safe('<b>Latest posts</b>: no configuration needed.'), template='latest_posts.html')
StaticBlockcan also be subclassed to produce a reusable block with the same configuration everywhere it is used:class LatestPostsStaticBlock(blocks.StaticBlock): class Meta: icon = 'user' label = 'Latest posts' admin_text = '{label}: configured elsewhere'.format(label=label) template = 'latest_posts.html' form_attrs = { 'data-controller': 'magic', 'data-action': 'click->magic#abracadabra', }
- class wagtail.blocks.StructBlock(*args, **kwargs)¶
Bases:
BaseStructBlockA block consisting of a fixed group of sub-blocks to be displayed together. Takes a list of
(name, block_definition)tuples as its first argument:body = StreamField([ # ... ('person', blocks.StructBlock([ ('first_name', blocks.CharBlock()), ('surname', blocks.CharBlock()), ('photo', ImageBlock(required=False)), ('biography', blocks.RichTextBlock()), ], icon='user')), ])
Alternatively, StructBlock can be subclassed to specify a reusable set of sub-blocks:
class PersonBlock(blocks.StructBlock): first_name = blocks.CharBlock() surname = blocks.CharBlock() photo = ImageBlock(required=False) biography = blocks.RichTextBlock() class Meta: icon = 'user'
The
Metaclass supports the propertiesdefault,label,iconandtemplate, which have the same meanings as when they are passed to the block’s constructor.This defines
PersonBlock()as a block type for use in StreamField definitions:body = StreamField([ ('heading', blocks.CharBlock(form_classname="title")), ('paragraph', blocks.RichTextBlock()), ('image', ImageBlock()), ('person', PersonBlock()), ])
The following additional options are available as either keyword arguments or Meta class attributes:
- Parameters:
form_classname – An HTML
classattribute to set on the root element of this block as displayed in the editing interface, defaults tostruct-block. When overriding, you may need to include the defaultstruct-blockclass if you have custom code or use a third-party package that relies on it. See Adding custom classes and attributes.form_attrs – A dictionary of additional attributes to set on the root element of this block as displayed in the editing interface. See Adding custom classes and attributes.
form_template – Path to a Django template to use to render this block’s form. See Customizing the template of StructBlock forms.
collapsed – When true and the block is within another
StructBlock, the block is initially collapsed. This can be useful for blocks with many sub-blocks, or blocks that are not expected to be edited frequently. See Customizing the initial collapsible state.value_class – A subclass of
wagtail.blocks.StructValueto use as the type of returned values for this block. See Additional methods and properties on StructBlock values.search_index – If false (default true), the content of this block will not be indexed for searching.
label_format – Determines the summary label shown after the
labelwhen the block is collapsed in the editing interface. By default, the value of the first sub-block in the StructBlock is shown, but this can be customized by setting a string here with block names contained in braces - for examplelabel_format = "{surname}, {first_name}". If you wish to hide the summary label entirely, set this to the empty string"".form_layout – A list of block names or
BlockGroupinstances to determine the order in which sub-blocks are displayed in the editing interface. Alternatively, aBlockGroupinstance can be provided instead of a list, to define a group ofchildrenandsettingsblocks. See Changing the order and grouping of child blocks andBlockGroupfor more details.
- get_form_layout() BlockGroup¶
Return the
BlockGrouprepresenting the form layout for thisStructBlock.
Added in version 7.3: The
form_layoutoption and theget_form_layoutmethod were added.
- class wagtail.blocks.ListBlock(*args, **kwargs)¶
Bases:
BlockA block consisting of many sub-blocks, all of the same type. The editor can add an unlimited number of sub-blocks, and re-order and delete them. Takes the definition of the sub-block as its first argument:
body = StreamField([ # ... ('ingredients_list', blocks.ListBlock(blocks.CharBlock(label="Ingredient"))), ])
Any block type is valid as the sub-block type, including structural types:
body = StreamField([ # ... ('ingredients_list', blocks.ListBlock(blocks.StructBlock([ ('ingredient', blocks.CharBlock()), ('amount', blocks.CharBlock(required=False)), ]))), ])
The following additional options are available as either keyword arguments or Meta class attributes:
- Parameters:
form_classname – An HTML
classattribute to set on the root element of this block as displayed in the editing interface.form_attrs – A dictionary of additional attributes to set on the root element of this block as displayed in the editing interface.
min_num – Minimum number of sub-blocks that the list must have.
max_num – Maximum number of sub-blocks that the list may have.
search_index – If false (default true), the content of this block will not be indexed for searching.
collapsed – When true, all sub-blocks are initially collapsed.
- class wagtail.blocks.StreamBlock(*args, **kwargs)¶
Bases:
BaseStreamBlockA block consisting of a sequence of sub-blocks of different types, which can be mixed and reordered at will. Used as the overall mechanism of the StreamField itself, but can also be nested or used within other structural block types. Takes a list of
(name, block_definition)tuples as its first argument:body = StreamField([ # ... ('carousel', blocks.StreamBlock( [ ('image', ImageBlock()), ('quotation', blocks.StructBlock([ ('text', blocks.TextBlock()), ('author', blocks.CharBlock()), ])), ('video', EmbedBlock()), ], icon='cogs' )), ])
As with StructBlock, the list of sub-blocks can also be provided as a subclass of StreamBlock:
class CarouselBlock(blocks.StreamBlock): image = ImageBlock() quotation = blocks.StructBlock([ ('text', blocks.TextBlock()), ('author', blocks.CharBlock()), ]) video = EmbedBlock() class Meta: icon='cogs'
Since
StreamFieldaccepts an instance ofStreamBlockas a parameter, in place of a list of block types, this makes it possible to re-use a common set of block types without repeating definitions:class HomePage(Page): carousel = StreamField( CarouselBlock(max_num=10, block_counts={'video': {'max_num': 2}}), )
StreamBlockaccepts the following additional options as either keyword arguments orMetaproperties:- Parameters:
required – If true (the default), at least one sub-block must be supplied. This is ignored when using the
StreamBlockas the top-level block of a StreamField; in this case, the StreamField’sblankproperty is respected instead.min_num – Minimum number of sub-blocks that the stream must have.
max_num – Maximum number of sub-blocks that the stream may have.
search_index – If false (default true), the content of this block will not be indexed for searching.
block_counts – Specifies the minimum and maximum number of each block type, as a dictionary mapping block names to dicts with (optional)
min_numandmax_numfields.collapsed – When true, all sub-blocks are initially collapsed.
form_classname – An HTML
classattribute to set on the root element of this block as displayed in the editing interface.form_attrs – A dictionary of additional attributes to set on the root element of this block as displayed in the editing interface.
body = StreamField([ # ... ('event_promotions', blocks.StreamBlock([ ('hashtag', blocks.CharBlock()), ('post_date', blocks.DateBlock()), ], form_classname='event-promotions')), ])
class EventPromotionsBlock(blocks.StreamBlock): hashtag = blocks.CharBlock() post_date = blocks.DateBlock() class Meta: form_classname = 'event-promotions'
Supporting components¶
BlockGroup¶
Added in version 7.3: The BlockGroup class was added.
- class wagtail.blocks.BlockGroup(children: list[str | BlockGroup], settings: list[str | BlockGroup] = None, heading='', classname='', help_text='', icon='placeholder', attrs: dict | None = None, label_format: str | None = None)¶
A grouping of blocks within a
StructBlock’s form layout in the editing interface. Can be used directly as theform_layoutinStructBlock.Meta, or nested within anotherBlockGroup.- Parameters:
children (list[str | BlockGroup]) – A list of block names or nested
BlockGroupthat will be rendered in the main content area.settings (list[str | BlockGroup]) – A list of block names or nested
BlockGroupthat will be rendered in the collapsible “settings” area that is hidden by default.
The following attributes are only used when the
BlockGroupis nested within anotherBlockGroup. For the top-levelBlockGroupused asMeta.form_layoutin aStructBlock, these attributes are ignored in favor of the corresponding attributes onStructBlock.Meta.- Parameters:
heading (str) – The heading label of the collapsible panel for this block group. For a top-level group, the
StructBlock’slabelwill be used instead.classname (str) – Additional CSS class name(s) to add to the block group’s main content area. To set the group to be initially collapsed, include the
collapsedclass here.help_text (str) – Help text to display below the block group’s heading.
icon (str) – The name of the icon to display alongside the block group’s heading.
attrs (dict) – A dictionary of HTML attributes to add to the block group’s main content area.
label_format (str | None) – The summary label shown after the
headingwhen the block is collapsed in the editing interface. By default, the value of the first child block is shown, but this can be customized by setting a string here with block names contained in braces - for examplelabel_format = " {surname}, {first_name}". If you wish to hide the summary label entirely, set this to the empty string"".
Methods¶
- get_sorted_block_names()¶
Return a flat list of all block names in this
BlockGroupand any nestedBlockGroupsin the group’s list order.