The Wayback Machine - http://web.archive.org/web/20220804232040/https://github.com/topics/wagtail
Skip to content
#

Wagtail

wagtail logo

Wagtail is a free and open source content management system (CMS) written in Python. The project has a focus on developer friendliness as well as ease of use of its administration interface, translated in multiple languages.

Here are 334 public repositories matching this topic...

gasman
gasman commented Jul 18, 2022

Pertinent section of the Wagtail docs

https://docs.wagtail.org/en/latest/reference/settings.html

Details

The Settings reference page is ostensibly organised into category subheadings ("Site name", "Append Slash"...), but since settings generally get added one-by-one with no plan for how they relate to each other, most of the subheadings only have one or two items in them, and so p

draftail
quirinpa
quirinpa commented Jan 18, 2021

Describe the bug

I'm trying to write a plugin to limit maximum content length in the draftail editor. I also want to be able to paste formatted content from outside the editor. Turns out my plugin's handlePastedText does not get called when setting prop stripPastedStyles to false. Unless I paste plain text.

Environment

Current version of draftail + draft.js 0.10.5

Steps to

bug help wanted good first issue
vsalvino
vsalvino commented Apr 17, 2019

It is a common use-case to require a comma in a form choice, such as "Please specify your income: $1,000 - $2,000" etc. I think it would be preferable to use pipe separator since it is not an English grammatical character.

While we do have a very customized form page, we are still leaning on some underpinnings of wagtail.contrib.forms, so I think we will either need to provide our own choice fi

Type: Bug Good First Issue skill: wagtail skill: python
onno-timmerman
onno-timmerman commented Jan 19, 2022

We experience sometimes a loop when the following happen.

  1. start translating something by clicking edit.
  2. forget to click on save after you edited
  3. click on publish a popup will appear that you have unsaved things are you sure
  4. click no and then click on save
  5. you will notice the publish icon will spin for a while now
good first issue javascript
wagtail-grapple
sks444
sks444 commented Nov 9, 2021
from wagtail.core.fields import RichTextField

@register_snippet
class TestSnippet(models.Model):
    title = models.CharField(max_length=50)
    description = RichTextField(
        blank=True
    )

    panels = [
        FieldPanel('title'),
        FieldPanel('description'),
    ]

    graphql_fields = [
        GraphQLString('title', required=True),
        GraphQLS
bug good first issue

Created by Torchbox

Released February 2014

Organization
wagtail
Website
wagtail.org
Wikipedia
Wikipedia

Related Topics

django python