From 01d7e61988f106f29e0c95d085b67d2b4f488b57 Mon Sep 17 00:00:00 2001 From: Will Barton Date: Wed, 21 Nov 2018 08:46:05 -0500 Subject: [PATCH 1/2] Expose non-existent conditions in the UI --- wagtailflags/templates/wagtailflags/index.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wagtailflags/templates/wagtailflags/index.html b/wagtailflags/templates/wagtailflags/index.html index 187e100..dbb8995 100644 --- a/wagtailflags/templates/wagtailflags/index.html +++ b/wagtailflags/templates/wagtailflags/index.html @@ -35,6 +35,9 @@

Flags

{% endif %} is enabled when + {% if condition.fn is None %} + ! + {% endif %} {{ condition.condition }} is From 533d5a6f70efa5f00d5cf52b4c5605d40301ffc0 Mon Sep 17 00:00:00 2001 From: Will Barton Date: Wed, 21 Nov 2018 08:49:27 -0500 Subject: [PATCH 2/2] Bump version for a new release --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 38aa914..d539de9 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ long_description=long_description, long_description_content_type='text/markdown', license='CC0', - version='4.0.0', + version='4.0.1', include_package_data=True, packages=find_packages(), install_requires=install_requires,