I am new to Wagtail and have just successfully installed my first site with a StreamField
block:
class DefaultPage(Page):
author = models.CharField(max_length=255, blank=True, null=True)
date = models.DateField("Post date", blank=True, null=True)
body = StreamField([
('title', blocks.CharBlock(form_classname="full title")),
('paragraph', blocks.RichTextBlock()),
('image', ImageChooserBlock()),
], blank=True, null=True)
However, the admin panel for the streamfield does not render this as expected. I expected a black control panel with inline editing, per the official Wagtail site:
Instead I have a different "light" theme UI:
Am I looking at different features? Is there an update in the latest release not on the official site?