Matt Westcott
Matt Westcott
Thanks for picking this up @salty-ivy! Just wondering what the reasoning is for putting this validation on the AbstractImage model, rather than inside `wagtail.images.fields.WagtailImageField` as in #9796? This means there'll...
Merged in 32822a90eea2ccc7619b23d637891949bb632ba4
Marking this for a potential 5.1.2 bugfix release, since if there was a previously working configuration (even if it's not one that we knew about :-) ) then this can...
Have fixed compatibility with
One thing we've tended to miss when adding icons to Wagtail is ensuring that any necessary attribution is in place (which is a requirement for Font Awesome v5 - see...
@zerolab Go for it 👍
#2278 makes this possible, currently with a few rough edges... ``` class PersonPage(Page): first_name = models.CharField(max_length=255) last_name = models.CharField(max_length=255) intro = RichTextField(blank=True) biography = RichTextField(blank=True) def clean(self): super(PersonPage, self).clean() self.title...
@nek4life This is what the 'Page title' field in the Promote tab (aka `seo_title`) is designed for. The idea is that your template contains something like: {% if page.seo_title %}{{...
Thanks @GeekGawd! Merged (with some modifications) in 08d05c63926a9c67b4c1522a2d8875f811da1773 - I've removed the cache-control header entirely, since the final version we arrived at is equivalent to no header at all. Have...
The core team has discussed this today, and we're happy with the principle of adding `ListField` / `StructField` types in parallel with StreamField (or, perhaps more simply, allowing StreamField to...