├── .editorconfig ├── .flake8 ├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── TERMS.md ├── pyproject.toml ├── screenshot_create.png ├── setup.py ├── tox.ini ├── wagtailflags.gif └── wagtailflags ├── __init__.py ├── apps.py ├── conditions.py ├── forms.py ├── signals.py ├── static └── wagtailflags │ └── css │ └── wagtailflags.css ├── templates └── wagtailflags │ ├── flag.svg │ ├── flags │ ├── create_flag.html │ ├── delete_condition.html │ ├── delete_flag.html │ ├── edit_condition.html │ └── flag_index.html │ ├── includes │ ├── flag_breadcrumbs.html │ ├── flag_header.html │ ├── flag_index.html │ └── header.html │ └── index.html ├── templatetags ├── __init__.py └── wagtailflags_admin.py ├── tests ├── __init__.py ├── settings.py ├── test_apps.py ├── test_conditions.py ├── test_signals.py ├── test_templatetags_wagtailflags_admin.py ├── test_views.py └── urls.py ├── utils.py ├── views.py └── wagtail_hooks.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/README.md -------------------------------------------------------------------------------- /TERMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/TERMS.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/pyproject.toml -------------------------------------------------------------------------------- /screenshot_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/screenshot_create.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/tox.ini -------------------------------------------------------------------------------- /wagtailflags.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags.gif -------------------------------------------------------------------------------- /wagtailflags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wagtailflags/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/apps.py -------------------------------------------------------------------------------- /wagtailflags/conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/conditions.py -------------------------------------------------------------------------------- /wagtailflags/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/forms.py -------------------------------------------------------------------------------- /wagtailflags/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/signals.py -------------------------------------------------------------------------------- /wagtailflags/static/wagtailflags/css/wagtailflags.css: -------------------------------------------------------------------------------- 1 | section.flag { 2 | margin-top: 4em; 3 | } 4 | -------------------------------------------------------------------------------- /wagtailflags/templates/wagtailflags/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/templates/wagtailflags/flag.svg -------------------------------------------------------------------------------- /wagtailflags/templates/wagtailflags/flags/create_flag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/templates/wagtailflags/flags/create_flag.html -------------------------------------------------------------------------------- /wagtailflags/templates/wagtailflags/flags/delete_condition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/templates/wagtailflags/flags/delete_condition.html -------------------------------------------------------------------------------- /wagtailflags/templates/wagtailflags/flags/delete_flag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/templates/wagtailflags/flags/delete_flag.html -------------------------------------------------------------------------------- /wagtailflags/templates/wagtailflags/flags/edit_condition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/templates/wagtailflags/flags/edit_condition.html -------------------------------------------------------------------------------- /wagtailflags/templates/wagtailflags/flags/flag_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/templates/wagtailflags/flags/flag_index.html -------------------------------------------------------------------------------- /wagtailflags/templates/wagtailflags/includes/flag_breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/templates/wagtailflags/includes/flag_breadcrumbs.html -------------------------------------------------------------------------------- /wagtailflags/templates/wagtailflags/includes/flag_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/templates/wagtailflags/includes/flag_header.html -------------------------------------------------------------------------------- /wagtailflags/templates/wagtailflags/includes/flag_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/templates/wagtailflags/includes/flag_index.html -------------------------------------------------------------------------------- /wagtailflags/templates/wagtailflags/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/templates/wagtailflags/includes/header.html -------------------------------------------------------------------------------- /wagtailflags/templates/wagtailflags/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/templates/wagtailflags/index.html -------------------------------------------------------------------------------- /wagtailflags/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wagtailflags/templatetags/wagtailflags_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/templatetags/wagtailflags_admin.py -------------------------------------------------------------------------------- /wagtailflags/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wagtailflags/tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/tests/settings.py -------------------------------------------------------------------------------- /wagtailflags/tests/test_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/tests/test_apps.py -------------------------------------------------------------------------------- /wagtailflags/tests/test_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/tests/test_conditions.py -------------------------------------------------------------------------------- /wagtailflags/tests/test_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/tests/test_signals.py -------------------------------------------------------------------------------- /wagtailflags/tests/test_templatetags_wagtailflags_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/tests/test_templatetags_wagtailflags_admin.py -------------------------------------------------------------------------------- /wagtailflags/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/tests/test_views.py -------------------------------------------------------------------------------- /wagtailflags/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/tests/urls.py -------------------------------------------------------------------------------- /wagtailflags/utils.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wagtailflags/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/views.py -------------------------------------------------------------------------------- /wagtailflags/wagtail_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-flags/HEAD/wagtailflags/wagtail_hooks.py --------------------------------------------------------------------------------