Skip to content

Instantly share code, notes, and snippets.

@hazho
Created July 30, 2021 07:19
Show Gist options
  • Save hazho/5a7b6478491beacea51cccfea0dbf9d3 to your computer and use it in GitHub Desktop.
Save hazho/5a7b6478491beacea51cccfea0dbf9d3 to your computer and use it in GitHub Desktop.
An example for HTML block element
from wagtail.core import blocks
class Heading(blocks.StructBlock):
text = blocks.CharBlock()
level = blocks.IntegerBlock()
class Meta:
template = 'blocks/heading_block.html'
<h{{self.level}}>{{ self.text }}</h{{self.level}}>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment