Andy Chosak
Andy Chosak
### Issue Summary #8441 renamed the PageRevision model to Revision, which included a migration with [a `RenameModel` step](https://github.com/wagtail/wagtail/blob/1f43d8ef51e455b92e42447fdc190d5ec83ec53c/wagtail/migrations/0070_rename_pagerevision_revision.py#L15-L18). On my local machine, running against SQLite in the default configuration, this...
Currently it's not possible to review or revert to a page's initial revision because we don't log a PageLogEntry "wagtail.edit" event in certain cases: - When a page is first...
Right now it's not easily possible to combine conditions using and/or logic, for example, enabling a flag _if A and B but not (C or D)_. This is possible using...
It would be useful to be able to write code like this: ```py with override_flag(MY_FLAG=True): # do some code that checks the value of MY_FLAG ``` The tests tend to...
This change prototypes using Wagtail's page [preview modes](https://docs.wagtail.io/en/stable/reference/pages/model_reference.html#wagtail.core.models.Page.preview_modes) to allow for previewing of blog posts in their list view, i.e. how they show up [on the blog page](https://www.consumerfinance.gov/about-us/blog/). ## How...
See also #4314.
Resubmission of #4255. Hoping that the addition of the PG APT repo at https://github.com/travis-ci/apt-source-whitelist/commit/e043c181d63ac3e1c2bef73fde0c57d4fa6de99f#diff-eb3790820e97ba4b0dd22623188e706aR378 will allow for this package to be whitelisted.
It would be nice to be able to vary the value of [`settings.ELASTICSEARCH_DSL_AUTO_REFRESH`](https://django-elasticsearch-dsl.readthedocs.io/en/latest/settings.html#elasticsearch-dsl-auto-refresh) in only some Django tests, for example using [`override_settings`](https://docs.djangoproject.com/en/3.1/topics/testing/tools/#django.test.override_settings). Say by default I don't want to enable...
Any flag conditions of type "boolean" don't appear in the Wagtail flags UI, because of [this use of `conditions_without_bool`](https://github.com/cfpb/wagtail-flags/blob/3ef8b51b7e3c8f0f55ec4fbed07668210cc04274/wagtailflags/templates/wagtailflags/includes/flag_index.html#L10). I gather this is to support the use of a boolean...
This commit adds the [wagtail-editable-help](https://github.com/wagtail/wagtail-editable-help) package as a way to make Wagtail help text editable. This initial commit only adds the package and manually changes two pieces of text to...