wagtail-feathers 1.0b1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wagtail_feathers-1.0b1/DEMO_ENHANCEMENT_PLAN.md +353 -0
- wagtail_feathers-1.0b1/DEVELOPMENT.md +222 -0
- wagtail_feathers-1.0b1/LICENSE +29 -0
- wagtail_feathers-1.0b1/MANIFEST.in +28 -0
- wagtail_feathers-1.0b1/PKG-INFO +798 -0
- wagtail_feathers-1.0b1/README.md +751 -0
- wagtail_feathers-1.0b1/demo/README.md +118 -0
- wagtail_feathers-1.0b1/demo/manage.py +22 -0
- wagtail_feathers-1.0b1/demo/requirements.txt +6 -0
- wagtail_feathers-1.0b1/demo/settings.py +162 -0
- wagtail_feathers-1.0b1/demo/showcase/__init__.py +0 -0
- wagtail_feathers-1.0b1/demo/showcase/apps.py +6 -0
- wagtail_feathers-1.0b1/demo/showcase/management/__init__.py +0 -0
- wagtail_feathers-1.0b1/demo/showcase/management/commands/__init__.py +0 -0
- wagtail_feathers-1.0b1/demo/showcase/management/commands/setup_demo_data.py +124 -0
- wagtail_feathers-1.0b1/demo/showcase/migrations/0001_initial.py +150 -0
- wagtail_feathers-1.0b1/demo/showcase/migrations/__init__.py +0 -0
- wagtail_feathers-1.0b1/demo/showcase/models.py +282 -0
- wagtail_feathers-1.0b1/demo/showcase/viewsets.py +12 -0
- wagtail_feathers-1.0b1/demo/showcase/wagtail_hooks.py +7 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/static/assets/stimulus-CZA9Too6.js +5 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/static/css/admin.css +1 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/static/css/main.css +1 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/FiraCode-Regular.woff2 +0 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/PublicSans-Black.woff2 +0 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/PublicSans-BlackItalic.woff2 +0 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/PublicSans-Bold.woff2 +0 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/PublicSans-BoldItalic.woff2 +0 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/PublicSans-Italic.woff2 +0 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/PublicSans-Light.woff2 +0 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/PublicSans-Regular.woff2 +0 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/PublicSans-SemiBold.woff2 +0 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/PublicSans-SemiBoldItalic.woff2 +0 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/PublicSans-Thin.woff2 +0 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/static/images/placeholder-image.webp +0 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/static/js/main.js +5 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/static/js/scrollspy.js +1 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/static/js/stimulus_admin_feathers.js +1 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/static/js/theme.js +1 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/400.html +45 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/403.html +45 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/404.html +49 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/500.html +47 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/base.html +56 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/base_content_page.html +15 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/base_page.html +10 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/components/_article_card.html +72 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/components/_locale_selector.html +47 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/components/_main_featured_article.html +78 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/components/_pagination.html +66 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/components/_secondary_featured_articles.html +79 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/components/_social_media_links.html +12 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/components/_theme_switcher.html +23 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/components/footer.html +107 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/components/header.html +101 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/includes/contact_addresses.html +35 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/_article_list_item.html +0 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/article_index_page.html +76 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/article_page--christmas.html +62 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/article_page--featured.html +62 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/article_page.html +66 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/form_page--newsletter.html +33 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/form_page--newsletter_landing.html +36 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/form_page.html +45 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/form_page_landing.html +28 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/home_page.html +47 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/web_page--landing.html +19 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/web_page--portfolio.html +27 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/web_page.html +13 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/welcome_page.html +52 -0
- wagtail_feathers-1.0b1/demo/themes/quantum/theme.json +75 -0
- wagtail_feathers-1.0b1/demo/urls.py +22 -0
- wagtail_feathers-1.0b1/demo/wsgi.py +11 -0
- wagtail_feathers-1.0b1/pyproject.toml +149 -0
- wagtail_feathers-1.0b1/src/.DS_Store +0 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/__init__.py +7 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/apps.py +9 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/blocks.py +1214 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/context_processors.py +71 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/factories.py +360 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/fields.py +39 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/filters.py +10 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/fixtures/sample_taxonomy.json +462 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/forms.py +101 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/helpers.py +65 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/management/__init__.py +0 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/management/commands/__init__.py +0 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/management/commands/create_sample_taxonomy.py +222 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/management/commands/manage_categories.py +177 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/management/commands/themes.py +256 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/migrations/0001_initial.py +497 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/migrations/__init__.py +0 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/mixins.py +16 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/models/__init__.py +75 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/models/author.py +107 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/models/base.py +469 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/models/errors.py +82 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/models/faq.py +130 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/models/geographic.py +28 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/models/inline.py +80 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/models/navigation.py +343 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/models/person.py +110 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/models/reading_time.py +300 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/models/seo.py +405 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/models/settings.py +150 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/models/social.py +90 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/models/specialized_pages.py +270 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/models/taxonomy.py +724 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/models/utils.py +9 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/panels.py +65 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/static/.DS_Store +0 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/static/images/placeholder-image.webp +0 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/struct_values.py +67 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/admin/category_add_child.html +90 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/admin/category_move.html +90 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/admin/edit_handlers/enhanced_classifier_inline_panel.html +169 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/admin/edit_handlers/inline_panel.html +236 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/_nested_navigation_link_block.html +21 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/card_block.html +44 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/card_section_block.html +21 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/cards_container_block.html +34 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/cta_block.html +140 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/embed_block.html +17 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/header_image_block.html +28 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/heading_block.html +21 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/hero_block.html +116 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/image_block.html +22 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/image_collection_gallery_block.html +117 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/image_grid_block.html +124 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/page_heading_block.html +6 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/paragraph_block.html +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/quote_block.html +5 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/submenu_divider_block.html +7 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/lucid/facebook.svg +14 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/lucid/feather.svg +16 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/lucid/instagram.svg +16 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/lucid/linkedin.svg +16 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/lucid/x.svg +15 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/lucid/youtube.svg +15 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-academic-cap-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-adjustments-horizontal-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-adjustments-vertical-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-archive-box-arrow-down-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-archive-box-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-archive-box-x-mark-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-circle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-left-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-on-square-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-on-square-stack-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-right-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-tray-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-left-circle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-left-end-on-rectangle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-left-on-rectangle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-left-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-left-start-on-rectangle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-long-down-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-long-left-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-long-right-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-long-up-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-path-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-path-rounded-square-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-right-circle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-right-end-on-rectangle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-right-on-rectangle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-right-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-right-start-on-rectangle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-small-down-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-small-left-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-small-right-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-small-up-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-top-right-on-square-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-trending-down-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-trending-up-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-down-left-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-down-right-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-left-down-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-left-up-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-right-down-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-right-up-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-up-left-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-up-right-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-circle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-left-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-on-square-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-on-square-stack-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-right-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-tray-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-uturn-down-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-uturn-left-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-uturn-right-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-uturn-up-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrows-pointing-in-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrows-pointing-out-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrows-right-left-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrows-up-down-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-at-symbol-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-backspace-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-backward-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-banknotes-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-2-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-3-bottom-left-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-3-bottom-right-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-3-center-left-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-3-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-4-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-arrow-down-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-arrow-up-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-battery-0-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-battery-100-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-battery-50-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-beaker-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bell-alert-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bell-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bell-slash-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bell-snooze-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bold-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bolt-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bolt-slash-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-book-open-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bookmark-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bookmark-slash-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bookmark-square-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-briefcase-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bug-ant-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-building-library-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-building-office-2-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-building-office-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-building-storefront-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cake-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-calculator-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-calendar-date-range-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-calendar-days-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-calendar-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-camera-outline.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chart-bar-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chart-bar-square-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chart-pie-outline.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-bottom-center-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-bottom-center-text-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-left-ellipsis-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-left-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-left-right-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-oval-left-ellipsis-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-oval-left-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-check-badge-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-check-circle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-check-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-double-down-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-double-left-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-double-right-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-double-up-outline.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-down-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-left-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-right-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-up-down-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-up-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-circle-stack-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-clipboard-document-check-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-clipboard-document-list-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-clipboard-document-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-clipboard-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-clock-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cloud-arrow-down-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cloud-arrow-up-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cloud-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-code-bracket-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-code-bracket-square-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cog-6-tooth-outline.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cog-8-tooth-outline.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cog-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-command-line-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-computer-desktop-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cpu-chip-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-credit-card-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cube-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cube-transparent-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-bangladeshi-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-dollar-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-euro-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-pound-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-rupee-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-yen-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cursor-arrow-rays-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cursor-arrow-ripple-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-device-phone-mobile-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-device-tablet-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-divide-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-arrow-down-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-arrow-up-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-chart-bar-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-check-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-bangladeshi-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-dollar-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-euro-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-pound-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-rupee-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-yen-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-duplicate-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-magnifying-glass-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-minus-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-plus-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-text-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-ellipsis-horizontal-circle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-ellipsis-horizontal-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-ellipsis-vertical-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-envelope-open-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-envelope-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-equals-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-exclamation-circle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-exclamation-triangle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-eye-dropper-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-eye-outline.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-eye-slash-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-face-frown-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-face-smile-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-film-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-finger-print-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-fire-outline.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-flag-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-folder-arrow-down-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-folder-minus-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-folder-open-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-folder-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-folder-plus-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-forward-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-funnel-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-gif-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-gift-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-gift-top-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-globe-alt-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-globe-americas-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-globe-asia-australia-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-globe-europe-africa-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-h1-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-h2-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-h3-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-hand-raised-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-hand-thumb-down-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-hand-thumb-up-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-hashtag-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-heart-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-home-modern-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-home-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-identification-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-inbox-arrow-down-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-inbox-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-inbox-stack-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-information-circle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-italic-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-key-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-language-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-lifebuoy-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-light-bulb-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-link-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-link-slash-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-list-bullet-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-lock-closed-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-lock-open-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-magnifying-glass-circle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-magnifying-glass-minus-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-magnifying-glass-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-magnifying-glass-plus-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-map-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-map-pin-outline.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-megaphone-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-microphone-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-minus-circle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-minus-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-minus-small-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-moon-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-musical-note-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-newspaper-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-no-symbol-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-numbered-list-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-paint-brush-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-paper-airplane-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-paper-clip-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-pause-circle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-pause-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-pencil-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-pencil-square-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-percent-badge-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-phone-arrow-down-left-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-phone-arrow-up-right-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-phone-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-phone-x-mark-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-photo-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-play-circle-outline.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-play-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-play-pause-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-plus-circle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-plus-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-plus-small-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-power-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-presentation-chart-bar-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-presentation-chart-line-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-printer-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-puzzle-piece-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-qr-code-outline.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-question-mark-circle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-queue-list-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-radio-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-receipt-percent-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-receipt-refund-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-rectangle-group-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-rectangle-stack-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-rocket-launch-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-rss-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-scale-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-scissors-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-server-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-server-stack-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-share-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-shield-check-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-shield-exclamation-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-shopping-bag-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-shopping-cart-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-signal-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-signal-slash-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-slash-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-sparkles-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-speaker-wave-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-speaker-x-mark-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-square-2-stack-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-square-3-stack-3d-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-squares-2x2-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-squares-plus-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-star-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-stop-circle-outline.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-stop-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-strikethrough-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-sun-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-swatch-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-table-cells-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-tag-outline.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-ticket-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-trash-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-trophy-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-truck-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-tv-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-underline-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-user-circle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-user-group-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-user-minus-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-user-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-user-plus-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-users-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-variable-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-video-camera-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-video-camera-slash-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-view-columns-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-viewfinder-circle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-wallet-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-wifi-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-window-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-wrench-outline.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-wrench-screwdriver-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-x-circle-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-x-mark-outline.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-academic-cap-solid.svg +5 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-adjustments-horizontal-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-adjustments-vertical-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-archive-box-arrow-down-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-archive-box-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-archive-box-x-mark-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-circle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-left-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-on-square-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-on-square-stack-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-right-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-tray-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-left-circle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-left-end-on-rectangle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-left-on-rectangle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-left-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-left-start-on-rectangle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-long-down-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-long-left-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-long-right-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-long-up-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-path-rounded-square-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-path-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-right-circle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-right-end-on-rectangle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-right-on-rectangle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-right-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-right-start-on-rectangle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-small-down-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-small-left-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-small-right-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-small-up-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-top-right-on-square-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-trending-down-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-trending-up-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-down-left-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-down-right-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-left-down-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-left-up-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-right-down-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-right-up-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-up-left-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-up-right-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-circle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-left-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-on-square-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-on-square-stack-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-right-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-tray-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-uturn-down-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-uturn-left-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-uturn-right-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-uturn-up-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrows-pointing-in-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrows-pointing-out-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrows-right-left-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrows-up-down-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-at-symbol-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-backspace-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-backward-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-banknotes-solid.svg +5 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-2-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-3-bottom-left-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-3-bottom-right-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-3-center-left-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-3-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-4-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-arrow-down-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-arrow-up-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-battery-0-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-battery-100-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-battery-50-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-beaker-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bell-alert-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bell-slash-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bell-snooze-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bell-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bold-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bolt-slash-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bolt-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-book-open-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bookmark-slash-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bookmark-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bookmark-square-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-briefcase-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bug-ant-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-building-library-solid.svg +5 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-building-office-2-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-building-office-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-building-storefront-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cake-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-calculator-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-calendar-date-range-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-calendar-days-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-calendar-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-camera-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chart-bar-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chart-bar-square-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chart-pie-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-bottom-center-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-bottom-center-text-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-left-ellipsis-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-left-right-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-left-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-oval-left-ellipsis-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-oval-left-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-check-badge-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-check-circle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-check-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-double-down-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-double-left-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-double-right-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-double-up-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-down-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-left-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-right-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-up-down-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-up-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-circle-stack-solid.svg +6 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-clipboard-document-check-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-clipboard-document-list-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-clipboard-document-solid.svg +5 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-clipboard-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-clock-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cloud-arrow-down-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cloud-arrow-up-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cloud-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-code-bracket-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-code-bracket-square-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cog-6-tooth-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cog-8-tooth-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cog-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-command-line-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-computer-desktop-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cpu-chip-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-credit-card-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cube-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cube-transparent-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-bangladeshi-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-dollar-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-euro-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-pound-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-rupee-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-yen-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cursor-arrow-rays-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cursor-arrow-ripple-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-device-phone-mobile-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-device-tablet-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-divide-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-arrow-down-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-arrow-up-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-chart-bar-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-check-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-bangladeshi-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-dollar-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-euro-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-pound-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-rupee-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-yen-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-duplicate-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-magnifying-glass-solid.svg +5 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-minus-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-plus-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-text-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-ellipsis-horizontal-circle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-ellipsis-horizontal-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-ellipsis-vertical-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-envelope-open-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-envelope-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-equals-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-exclamation-circle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-exclamation-triangle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-eye-dropper-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-eye-slash-solid.svg +5 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-eye-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-face-frown-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-face-smile-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-film-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-finger-print-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-fire-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-flag-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-folder-arrow-down-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-folder-minus-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-folder-open-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-folder-plus-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-folder-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-forward-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-funnel-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-gif-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-gift-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-gift-top-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-globe-alt-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-globe-americas-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-globe-asia-australia-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-globe-europe-africa-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-h1-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-h2-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-h3-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-hand-raised-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-hand-thumb-down-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-hand-thumb-up-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-hashtag-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-heart-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-home-modern-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-home-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-identification-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-inbox-arrow-down-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-inbox-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-inbox-stack-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-information-circle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-italic-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-key-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-language-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-lifebuoy-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-light-bulb-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-link-slash-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-link-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-list-bullet-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-lock-closed-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-lock-open-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-magnifying-glass-circle-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-magnifying-glass-minus-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-magnifying-glass-plus-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-magnifying-glass-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-map-pin-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-map-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-megaphone-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-microphone-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-minus-circle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-minus-small-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-minus-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-moon-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-musical-note-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-newspaper-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-no-symbol-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-numbered-list-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-paint-brush-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-paper-airplane-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-paper-clip-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-pause-circle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-pause-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-pencil-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-pencil-square-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-percent-badge-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-phone-arrow-down-left-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-phone-arrow-up-right-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-phone-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-phone-x-mark-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-photo-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-play-circle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-play-pause-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-play-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-plus-circle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-plus-small-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-plus-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-power-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-presentation-chart-bar-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-presentation-chart-line-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-printer-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-puzzle-piece-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-qr-code-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-question-mark-circle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-queue-list-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-radio-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-receipt-percent-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-receipt-refund-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-rectangle-group-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-rectangle-stack-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-rocket-launch-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-rss-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-scale-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-scissors-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-server-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-server-stack-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-share-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-shield-check-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-shield-exclamation-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-shopping-bag-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-shopping-cart-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-signal-slash-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-signal-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-slash-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-sparkles-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-speaker-wave-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-speaker-x-mark-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-square-2-stack-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-square-3-stack-3d-solid.svg +5 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-squares-2x2-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-squares-plus-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-star-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-stop-circle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-stop-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-strikethrough-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-sun-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-swatch-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-table-cells-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-tag-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-ticket-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-trash-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-trophy-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-truck-solid.svg +5 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-tv-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-underline-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-user-circle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-user-group-solid.svg +4 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-user-minus-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-user-plus-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-user-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-users-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-variable-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-video-camera-slash-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-video-camera-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-view-columns-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-viewfinder-circle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-wallet-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-wifi-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-window-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-wrench-screwdriver-solid.svg +5 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-wrench-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-x-circle-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-x-mark-solid.svg +3 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/preview/static_embed_block.html +20 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/seo/meta.html +118 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/seo/structured_data.html +63 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/tags/reading_time_display.html +18 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/templatetags/_footer_text.html +0 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/templatetags/_mobile_menu_items.html +25 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/templatetags/_svg_icon.html +24 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/templatetags/_top_menu_items.html +31 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/templatetags/breadcrumbs.html +24 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/templatetags/category_breadcrumbs.html +161 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/templatetags/category_navigation.html +147 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/templatetags/category_tree.html +151 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/templatetags/social_media_links.html +49 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/widgets/checkbox_taxonomy.html +36 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/__init__.py +0 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/category_tags.py +162 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/feathers_tags.py +67 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/navigation_tags.py +166 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/pagination_tags.py +10 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/placeholder_tags.py +50 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/querystring_tags.py +21 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/reading_time_tags.py +232 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/seo_tags.py +228 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/social_tags.py +45 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/svg_tags.py +122 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/themes.py +663 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/utils/__init__.py +0 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/utils/query.py +19 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/version.py +45 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/views.py +70 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/viewsets/__init__.py +34 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/viewsets/author.py +12 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/viewsets/components.py +10 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/viewsets/navigation.py +69 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/viewsets/person.py +21 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/viewsets/social.py +12 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/viewsets/taxonomy.py +199 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/viewsets/viewset_groups.py +78 -0
- wagtail_feathers-1.0b1/src/wagtail_feathers/wagtail_hooks.py +266 -0
- wagtail_feathers-1.0b1/tests/__init__.py +0 -0
- wagtail_feathers-1.0b1/tests/conftest.py +29 -0
- wagtail_feathers-1.0b1/tests/settings.py +172 -0
- wagtail_feathers-1.0b1/tests/test_multisite_simple.py +174 -0
- wagtail_feathers-1.0b1/tests/test_multisite_themes.py +211 -0
- wagtail_feathers-1.0b1/tests/test_struct_values.py +119 -0
- wagtail_feathers-1.0b1/tests/test_taxonomy.py +615 -0
- wagtail_feathers-1.0b1/tests/test_theme_integration.py +147 -0
- wagtail_feathers-1.0b1/tests/test_themes.py +700 -0
- wagtail_feathers-1.0b1/tests/urls.py +25 -0
- wagtail_feathers-1.0b1/tox.ini +55 -0
|
@@ -0,0 +1,353 @@
|
|
|
1
|
+
# Wagtail Feathers Demo Enhancement Plan
|
|
2
|
+
|
|
3
|
+
## Current Demo Status Analysis (Updated: July 28, 2025)
|
|
4
|
+
|
|
5
|
+
### ✅ Phase 1 COMPLETED - Content Structure
|
|
6
|
+
- **Enhanced Page Models**: `HomePage`, `ArticlePage`, `ArticleIndexPage`, `AuthorPage`, `FAQPage`, `ContactPage`
|
|
7
|
+
- **Taxonomy System**: 19 categories, 7 classifier groups, 59 classifiers with full hierarchy
|
|
8
|
+
- **Author System**: 4 author types, 4 person groups, 5 people with relationships
|
|
9
|
+
- **Admin Interface**: ArticlePageListingViewSet, proper admin access, sample content
|
|
10
|
+
- **Site Configuration**: Proper HomePage setup, site configuration, superuser (admin/admin123)
|
|
11
|
+
- **Template Fixes**: Removed invalid template tags, fixed theme compatibility
|
|
12
|
+
|
|
13
|
+
**Demo Coverage: ~30% (up from <5%)**
|
|
14
|
+
|
|
15
|
+
### 🔄 Remaining Features to Implement
|
|
16
|
+
|
|
17
|
+
## Core Models & Features Not Demonstrated
|
|
18
|
+
|
|
19
|
+
### 1. **Taxonomy System** ✅ COMPLETED
|
|
20
|
+
- `Category` - 19 categories in hierarchical tree (Technology, Business, Science, Arts, Education)
|
|
21
|
+
- `Classifier` & `ClassifierGroup` - 7 groups with 59 classifiers
|
|
22
|
+
- `PageCategory` & `PageClassifier` - Articles properly tagged
|
|
23
|
+
- Admin category management via wagtail-feathers admin
|
|
24
|
+
|
|
25
|
+
### 2. **Author System** ✅ COMPLETED
|
|
26
|
+
- `AuthorType` - 4 types: Lead Author, Co-Author, Reviewer, Editor
|
|
27
|
+
- `PageAuthor` - Articles linked to authors with relationships
|
|
28
|
+
- `Person` & `PersonGroup` - 5 people in 4 groups (Technical Writers, Researchers, etc.)
|
|
29
|
+
- Author pages and profiles functional
|
|
30
|
+
|
|
31
|
+
### 3. **Navigation System** 🧭
|
|
32
|
+
**Missing in Demo:**
|
|
33
|
+
- `Menu`, `MenuItem`, `FlatMenu`, `NestedMenu` - Dynamic navigation
|
|
34
|
+
- `Footer`, `FooterNavigation` - Footer menu management
|
|
35
|
+
|
|
36
|
+
**Should Demonstrate:**
|
|
37
|
+
- Dynamic main navigation
|
|
38
|
+
- Multi-level dropdown menus
|
|
39
|
+
- Footer navigation sections
|
|
40
|
+
- Admin menu management interface
|
|
41
|
+
|
|
42
|
+
### 4. **Social Media Integration** 📱
|
|
43
|
+
**Missing in Demo:**
|
|
44
|
+
- `SocialMediaLink` & `SocialMediaSettings` - Social media management
|
|
45
|
+
- Social sharing functionality
|
|
46
|
+
|
|
47
|
+
**Should Demonstrate:**
|
|
48
|
+
- Site-wide social media links
|
|
49
|
+
- Social sharing buttons on articles
|
|
50
|
+
- Author social media profiles
|
|
51
|
+
|
|
52
|
+
### 5. **Geographic Features** 🌍
|
|
53
|
+
**Missing in Demo:**
|
|
54
|
+
- `PageCountry` - Geographic tagging of content
|
|
55
|
+
|
|
56
|
+
**Should Demonstrate:**
|
|
57
|
+
- Country-specific content filtering
|
|
58
|
+
- Geographic content organization
|
|
59
|
+
|
|
60
|
+
### 6. **FAQ System** ❓
|
|
61
|
+
**Missing in Demo:**
|
|
62
|
+
- `FAQ` & `FAQCategory` - FAQ management
|
|
63
|
+
- `FAQBasePage` - Specialized FAQ pages
|
|
64
|
+
|
|
65
|
+
**Should Demonstrate:**
|
|
66
|
+
- FAQ categories and items
|
|
67
|
+
- FAQ page with search/filtering
|
|
68
|
+
- Embedded FAQ sections in other pages
|
|
69
|
+
|
|
70
|
+
### 7. **Form System** 📝
|
|
71
|
+
**Missing in Demo:**
|
|
72
|
+
- `FormBasePage` - Enhanced form pages with theme support
|
|
73
|
+
|
|
74
|
+
**Should Demonstrate:**
|
|
75
|
+
- Contact forms
|
|
76
|
+
- Newsletter signup
|
|
77
|
+
- Custom form fields and styling
|
|
78
|
+
|
|
79
|
+
### 8. **Rich Block System** 🧱
|
|
80
|
+
**Missing in Demo:**
|
|
81
|
+
- Most StreamField blocks from `blocks.py`
|
|
82
|
+
- Theme-aware components
|
|
83
|
+
|
|
84
|
+
**Should Demonstrate:**
|
|
85
|
+
- Hero sections with call-to-actions
|
|
86
|
+
- Card grids and sections
|
|
87
|
+
- Image galleries and grids
|
|
88
|
+
- Quote blocks with variants
|
|
89
|
+
- Call-to-action sections
|
|
90
|
+
- FAQ embed blocks
|
|
91
|
+
- Nested navigation menus
|
|
92
|
+
|
|
93
|
+
### 9. **SEO & Metadata** 🔍
|
|
94
|
+
**Missing in Demo:**
|
|
95
|
+
- `SeoMixin` advanced features
|
|
96
|
+
- Structured data implementation
|
|
97
|
+
- Social media meta tags
|
|
98
|
+
|
|
99
|
+
**Should Demonstrate:**
|
|
100
|
+
- Custom meta descriptions
|
|
101
|
+
- Open Graph tags
|
|
102
|
+
- Twitter Cards
|
|
103
|
+
- Structured data for articles
|
|
104
|
+
|
|
105
|
+
### 10. **Reading Time & Content Features** ⏱️
|
|
106
|
+
**Missing in Demo:**
|
|
107
|
+
- `ReadingTimeMixin` functionality
|
|
108
|
+
- Content analysis features
|
|
109
|
+
|
|
110
|
+
**Should Demonstrate:**
|
|
111
|
+
- Article reading time calculation
|
|
112
|
+
- Content statistics display
|
|
113
|
+
|
|
114
|
+
### 11. **Related Content** 🔗
|
|
115
|
+
**Missing in Demo:**
|
|
116
|
+
- `RelatedPage`, `RelatedDocument`, `RelatedExternalLink`
|
|
117
|
+
- Content relationships
|
|
118
|
+
|
|
119
|
+
**Should Demonstrate:**
|
|
120
|
+
- Related articles sidebar
|
|
121
|
+
- Document attachments
|
|
122
|
+
- External resource links
|
|
123
|
+
|
|
124
|
+
### 12. **Error Pages** ⚠️
|
|
125
|
+
**Missing in Demo:**
|
|
126
|
+
- `ErrorPage` model usage
|
|
127
|
+
- Custom error page templates
|
|
128
|
+
|
|
129
|
+
**Should Demonstrate:**
|
|
130
|
+
- Custom 404, 403, 500 error pages
|
|
131
|
+
- Themed error page variants
|
|
132
|
+
|
|
133
|
+
### 13. **Management Commands** 🔧
|
|
134
|
+
**Missing in Demo:**
|
|
135
|
+
- Theme management commands
|
|
136
|
+
- Category management commands
|
|
137
|
+
- Sample data creation commands
|
|
138
|
+
|
|
139
|
+
**Should Demonstrate:**
|
|
140
|
+
- Sample data generation workflow
|
|
141
|
+
- Theme switching via command line
|
|
142
|
+
- Category tree management
|
|
143
|
+
|
|
144
|
+
### 14. **Admin Viewsets** ⚙️
|
|
145
|
+
**Missing in Demo:**
|
|
146
|
+
- Admin customizations via viewsets
|
|
147
|
+
- Enhanced admin interfaces
|
|
148
|
+
|
|
149
|
+
**Should Demonstrate:**
|
|
150
|
+
- Category management interface
|
|
151
|
+
- Author management interface
|
|
152
|
+
- Navigation menu builder
|
|
153
|
+
- Social media settings
|
|
154
|
+
|
|
155
|
+
## Comprehensive Demo Enhancement Plan
|
|
156
|
+
|
|
157
|
+
### ✅ Phase 1: Content Structure COMPLETED
|
|
158
|
+
1. **Enhanced Page Models** ✅
|
|
159
|
+
- `HomePage` with proper WebBasePage inheritance and site configuration
|
|
160
|
+
- `ArticlePage` with excerpts, featured images, taxonomy/author relationships
|
|
161
|
+
- `ArticleIndexPage` with optimized queries and pagination
|
|
162
|
+
- `AuthorPage` with profiles, bio, contact info
|
|
163
|
+
- `FAQPage` and `ContactPage` with FormBasePage features
|
|
164
|
+
|
|
165
|
+
2. **Taxonomy Implementation** ✅
|
|
166
|
+
- 19 categories across 5 main branches (Technology, Business, Science, Arts, Education)
|
|
167
|
+
- 59 classifiers in 7 groups (Subject/Attribute types)
|
|
168
|
+
- Articles properly categorized and classified
|
|
169
|
+
- Management command for creating sample taxonomy data
|
|
170
|
+
|
|
171
|
+
3. **Author System** ✅
|
|
172
|
+
- 5 author profiles with bios and group memberships
|
|
173
|
+
- 4 author types and 4 person groups
|
|
174
|
+
- Multi-author support via PageAuthor relationships
|
|
175
|
+
- Author pages and detail views functional
|
|
176
|
+
|
|
177
|
+
4. **Admin Interface** ✅
|
|
178
|
+
- ArticlePageListingViewSet for admin menu access
|
|
179
|
+
- All models accessible via enhanced admin
|
|
180
|
+
- Sample content with realistic data
|
|
181
|
+
- Superuser account (admin/admin123)
|
|
182
|
+
|
|
183
|
+
### Phase 2: Navigation & Structure (High Priority)
|
|
184
|
+
1. **Dynamic Navigation**
|
|
185
|
+
- Implement main navigation menu
|
|
186
|
+
- Add multi-level dropdown menus
|
|
187
|
+
- Create footer navigation sections
|
|
188
|
+
- Add breadcrumb navigation
|
|
189
|
+
|
|
190
|
+
2. **Content Blocks**
|
|
191
|
+
- Implement hero sections on homepage
|
|
192
|
+
- Add card grids for featured content
|
|
193
|
+
- Create call-to-action sections
|
|
194
|
+
- Add image galleries and quote blocks
|
|
195
|
+
|
|
196
|
+
### Phase 3: Advanced Features (Medium Priority)
|
|
197
|
+
1. **Social Integration**
|
|
198
|
+
- Add social media links to site settings
|
|
199
|
+
- Implement social sharing on articles
|
|
200
|
+
- Add author social media profiles
|
|
201
|
+
|
|
202
|
+
2. **FAQ System**
|
|
203
|
+
- Create FAQ categories and items
|
|
204
|
+
- Build comprehensive FAQ page
|
|
205
|
+
- Add FAQ embed blocks to other pages
|
|
206
|
+
|
|
207
|
+
3. **Forms & Contact**
|
|
208
|
+
- Enhanced contact form with validation
|
|
209
|
+
- Newsletter signup functionality
|
|
210
|
+
- Form success pages with theme variants
|
|
211
|
+
|
|
212
|
+
### Phase 4: Content & Polish (Medium Priority)
|
|
213
|
+
1. **SEO Enhancement**
|
|
214
|
+
- Implement advanced SEO features
|
|
215
|
+
- Add structured data for articles
|
|
216
|
+
- Optimize meta tags and social sharing
|
|
217
|
+
|
|
218
|
+
2. **Content Features**
|
|
219
|
+
- Add reading time to articles
|
|
220
|
+
- Implement related content sections
|
|
221
|
+
- Add document attachments to articles
|
|
222
|
+
|
|
223
|
+
### Phase 5: Admin & Management (Low Priority)
|
|
224
|
+
1. **Admin Enhancements**
|
|
225
|
+
- Configure all admin viewsets
|
|
226
|
+
- Add category management interface
|
|
227
|
+
- Implement menu builder interface
|
|
228
|
+
|
|
229
|
+
2. **Sample Data & Commands**
|
|
230
|
+
- Create comprehensive sample data command
|
|
231
|
+
- Add data fixtures for realistic content
|
|
232
|
+
- Document management command usage
|
|
233
|
+
|
|
234
|
+
## Implementation Strategy
|
|
235
|
+
|
|
236
|
+
### New Demo Models Needed
|
|
237
|
+
```python
|
|
238
|
+
# demo/showcase/models.py additions
|
|
239
|
+
|
|
240
|
+
class EnhancedArticlePage(FeatherBasePage):
|
|
241
|
+
"""Comprehensive article demonstrating all features"""
|
|
242
|
+
# Add all FeatherBasePage features
|
|
243
|
+
# Include author relationships
|
|
244
|
+
# Add category/classifier relationships
|
|
245
|
+
# Implement related content
|
|
246
|
+
# Add social sharing
|
|
247
|
+
|
|
248
|
+
class AuthorPage(FeatherBasePage):
|
|
249
|
+
"""Author profile pages"""
|
|
250
|
+
# Author bio, image, social links
|
|
251
|
+
# List of author's articles
|
|
252
|
+
# Contact information
|
|
253
|
+
|
|
254
|
+
class FAQPage(FAQBasePage):
|
|
255
|
+
"""FAQ page with categories and search"""
|
|
256
|
+
# Implement FAQ categories
|
|
257
|
+
# Add search functionality
|
|
258
|
+
# Include theme variants
|
|
259
|
+
|
|
260
|
+
class ContactPage(FormBasePage):
|
|
261
|
+
"""Contact form with enhanced features"""
|
|
262
|
+
# Multiple form types
|
|
263
|
+
# Success page variants
|
|
264
|
+
# Email notifications
|
|
265
|
+
|
|
266
|
+
class CategoryIndexPage(FeatherBasePage):
|
|
267
|
+
"""Category-based content listing"""
|
|
268
|
+
# Filter by categories
|
|
269
|
+
# Show category hierarchy
|
|
270
|
+
# Pagination and sorting
|
|
271
|
+
```
|
|
272
|
+
|
|
273
|
+
### StreamField Enhancements
|
|
274
|
+
- Add comprehensive StreamField blocks to all pages
|
|
275
|
+
- Implement theme-aware block variants
|
|
276
|
+
- Create reusable content sections
|
|
277
|
+
- Add interactive elements
|
|
278
|
+
|
|
279
|
+
### Admin Configuration
|
|
280
|
+
- Configure all viewsets for enhanced admin
|
|
281
|
+
- Add custom admin panels
|
|
282
|
+
- Implement bulk operations
|
|
283
|
+
- Add admin documentation
|
|
284
|
+
|
|
285
|
+
### Theme Enhancements
|
|
286
|
+
- Extend quantum theme with all block templates
|
|
287
|
+
- Add theme variants for all components
|
|
288
|
+
- Implement responsive design patterns
|
|
289
|
+
- Add accessibility features
|
|
290
|
+
|
|
291
|
+
### Sample Data Creation
|
|
292
|
+
- Create realistic content for all models
|
|
293
|
+
- Add sample images and media
|
|
294
|
+
- Generate category hierarchies
|
|
295
|
+
- Create author profiles with content
|
|
296
|
+
|
|
297
|
+
## Expected Outcomes
|
|
298
|
+
|
|
299
|
+
After implementation, the demo will showcase:
|
|
300
|
+
- ✅ **Complete Feature Coverage**: Every wagtail-feathers feature demonstrated
|
|
301
|
+
- ✅ **Real-world Usage**: Practical implementation examples
|
|
302
|
+
- ✅ **Admin Interface**: Full admin functionality displayed
|
|
303
|
+
- ✅ **Theme System**: Complete theme variant usage
|
|
304
|
+
- ✅ **Content Relationships**: All model relationships working
|
|
305
|
+
- ✅ **SEO & Performance**: Optimized content structure
|
|
306
|
+
- ✅ **User Experience**: Intuitive navigation and content discovery
|
|
307
|
+
- ✅ **Developer Reference**: Clear implementation patterns
|
|
308
|
+
|
|
309
|
+
## Session Restart Information
|
|
310
|
+
|
|
311
|
+
### Key Files to Review
|
|
312
|
+
- `src/wagtail_feathers/models/__init__.py` - All available models
|
|
313
|
+
- `src/wagtail_feathers/blocks.py` - StreamField blocks (1200+ lines)
|
|
314
|
+
- `src/wagtail_feathers/viewsets/__init__.py` - Admin viewsets
|
|
315
|
+
- `demo/showcase/models.py` - Current demo models (minimal)
|
|
316
|
+
|
|
317
|
+
### Implementation Priority
|
|
318
|
+
1. **High**: Models, blocks, navigation, taxonomy
|
|
319
|
+
2. **Medium**: Social, FAQ, SEO, forms
|
|
320
|
+
3. **Low**: Admin polish, management commands
|
|
321
|
+
|
|
322
|
+
### Testing Strategy
|
|
323
|
+
- Create sample data via management commands
|
|
324
|
+
- Test all admin interfaces
|
|
325
|
+
- Verify theme variants work correctly
|
|
326
|
+
- Check responsive design and accessibility
|
|
327
|
+
|
|
328
|
+
---
|
|
329
|
+
|
|
330
|
+
## Implementation Status Update (July 28, 2025)
|
|
331
|
+
|
|
332
|
+
### ✅ **Completed Work**
|
|
333
|
+
- **Phase 1**: Content Structure - 100% Complete
|
|
334
|
+
- **Demo Coverage**: Improved from <5% to ~30% of wagtail-feathers features
|
|
335
|
+
- **Site Status**: Fully functional at http://localhost:8000/
|
|
336
|
+
- **Admin Access**: Working admin interface with ArticlePageListingViewSet
|
|
337
|
+
- **Sample Content**: 3 articles, complete taxonomy, 5 authors with relationships
|
|
338
|
+
- **Template Issues**: Fixed invalid template tags, removed colead_tags references
|
|
339
|
+
|
|
340
|
+
### 🔄 **Next Priorities**
|
|
341
|
+
1. **Phase 2**: Navigation & Structure (Dynamic menus, content blocks)
|
|
342
|
+
2. **Phase 3**: Advanced Features (Social integration, enhanced FAQ)
|
|
343
|
+
3. **Phase 4**: Content & Polish (SEO, reading time, related content)
|
|
344
|
+
4. **Phase 5**: Admin & Management (Enhanced viewsets, bulk operations)
|
|
345
|
+
|
|
346
|
+
### 🎯 **Remaining Work**
|
|
347
|
+
- **70% of planned features** still to be implemented
|
|
348
|
+
- **StreamField Blocks**: Hero sections, cards, galleries, quotes, CTAs
|
|
349
|
+
- **Navigation System**: Dynamic menus, footer navigation, breadcrumbs
|
|
350
|
+
- **Social Integration**: Social media links, sharing buttons
|
|
351
|
+
- **Advanced Features**: FAQ embed blocks, enhanced forms, SEO optimization
|
|
352
|
+
|
|
353
|
+
*Updated plan roadmap for continuing comprehensive wagtail-feathers demo development.*
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
# Development Guide for Wagtail Feathers
|
|
2
|
+
|
|
3
|
+
## Setup Development Environment
|
|
4
|
+
|
|
5
|
+
### 1. Clone and Install
|
|
6
|
+
```bash
|
|
7
|
+
git clone https://github.com/softquantum/wagtail-feathers.git
|
|
8
|
+
cd wagtail-feathers
|
|
9
|
+
|
|
10
|
+
# Install in development mode with all dev dependencies
|
|
11
|
+
pip install -e ".[dev]"
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
### 2. Run Tests
|
|
15
|
+
```bash
|
|
16
|
+
# Run all tests
|
|
17
|
+
pytest
|
|
18
|
+
|
|
19
|
+
# Run with coverage
|
|
20
|
+
pytest --cov=wagtail_feathers --cov-report=html
|
|
21
|
+
|
|
22
|
+
# Run specific test files
|
|
23
|
+
pytest src/wagtail_feathers/tests/test_themes.py
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
### 3. Use Tox for Multi-Environment Testing
|
|
27
|
+
```bash
|
|
28
|
+
# Run tests across all supported Python/Django/Wagtail combinations
|
|
29
|
+
tox
|
|
30
|
+
|
|
31
|
+
# Run only linting
|
|
32
|
+
tox -e lint
|
|
33
|
+
|
|
34
|
+
# Run only formatting
|
|
35
|
+
tox -e format
|
|
36
|
+
|
|
37
|
+
# Run coverage
|
|
38
|
+
tox -e coverage
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Package Management with Flit
|
|
42
|
+
|
|
43
|
+
### Building the Package
|
|
44
|
+
```bash
|
|
45
|
+
# Install flit if not already installed
|
|
46
|
+
pip install flit
|
|
47
|
+
|
|
48
|
+
# Build the package
|
|
49
|
+
flit build
|
|
50
|
+
|
|
51
|
+
# Check what files will be included
|
|
52
|
+
flit build --check
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### Publishing to PyPI
|
|
56
|
+
```bash
|
|
57
|
+
# Publish to Test PyPI first
|
|
58
|
+
flit publish --repository testpypi
|
|
59
|
+
|
|
60
|
+
# Publish to PyPI
|
|
61
|
+
flit publish
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
### Installing from Local Build
|
|
65
|
+
```bash
|
|
66
|
+
# Install in development mode
|
|
67
|
+
flit install --symlink
|
|
68
|
+
|
|
69
|
+
# Install normally
|
|
70
|
+
flit install
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
## Code Quality
|
|
74
|
+
|
|
75
|
+
### Linting and Formatting
|
|
76
|
+
```bash
|
|
77
|
+
# Check code style
|
|
78
|
+
ruff check src/
|
|
79
|
+
|
|
80
|
+
# Fix auto-fixable issues
|
|
81
|
+
ruff check --fix src/
|
|
82
|
+
|
|
83
|
+
# Format code
|
|
84
|
+
ruff format src/
|
|
85
|
+
|
|
86
|
+
# Check formatting without applying
|
|
87
|
+
ruff format --check src/
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
### Pre-commit Hooks (Optional)
|
|
91
|
+
```bash
|
|
92
|
+
# Install pre-commit
|
|
93
|
+
pip install pre-commit
|
|
94
|
+
|
|
95
|
+
# Create .pre-commit-config.yaml
|
|
96
|
+
cat > .pre-commit-config.yaml << EOF
|
|
97
|
+
repos:
|
|
98
|
+
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
99
|
+
rev: v0.1.0
|
|
100
|
+
hooks:
|
|
101
|
+
- id: ruff
|
|
102
|
+
args: [--fix, --exit-non-zero-on-fix]
|
|
103
|
+
- id: ruff-format
|
|
104
|
+
EOF
|
|
105
|
+
|
|
106
|
+
# Install hooks
|
|
107
|
+
pre-commit install
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
## Testing Strategy
|
|
111
|
+
|
|
112
|
+
### Test Structure
|
|
113
|
+
- `src/wagtail_feathers/tests/` contains all tests
|
|
114
|
+
- Tests are organized by functionality (themes, models, etc.)
|
|
115
|
+
- Uses pytest with Django integration
|
|
116
|
+
- Includes factories for test data generation
|
|
117
|
+
|
|
118
|
+
### Writing Tests
|
|
119
|
+
```python
|
|
120
|
+
import pytest
|
|
121
|
+
from wagtail_feathers.models import FeatherBasePage
|
|
122
|
+
|
|
123
|
+
@pytest.mark.django_db
|
|
124
|
+
def test_feather_base_page_creation():
|
|
125
|
+
page = FeatherBasePage(title="Test Page")
|
|
126
|
+
assert page.title == "Test Page"
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
### Test Settings
|
|
130
|
+
The package includes a dedicated test settings file at:
|
|
131
|
+
`src/wagtail_feathers/tests/settings.py`
|
|
132
|
+
|
|
133
|
+
This provides a minimal Django/Wagtail setup for testing.
|
|
134
|
+
|
|
135
|
+
## Version Management
|
|
136
|
+
|
|
137
|
+
Version is managed in `src/wagtail_feathers/__init__.py`:
|
|
138
|
+
|
|
139
|
+
```python
|
|
140
|
+
__version__ = "0.1.0"
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
Flit automatically reads this for package metadata.
|
|
144
|
+
|
|
145
|
+
## Documentation
|
|
146
|
+
|
|
147
|
+
### Updating README
|
|
148
|
+
The main README.md should be kept up-to-date with:
|
|
149
|
+
- Feature descriptions
|
|
150
|
+
- Installation instructions
|
|
151
|
+
- Usage examples
|
|
152
|
+
- API documentation
|
|
153
|
+
|
|
154
|
+
### Docstrings
|
|
155
|
+
Follow Google-style docstrings:
|
|
156
|
+
|
|
157
|
+
```python
|
|
158
|
+
def my_function(param1: str, param2: int) -> bool:
|
|
159
|
+
"""Short description of the function.
|
|
160
|
+
|
|
161
|
+
Longer description if needed.
|
|
162
|
+
|
|
163
|
+
Args:
|
|
164
|
+
param1: Description of parameter 1.
|
|
165
|
+
param2: Description of parameter 2.
|
|
166
|
+
|
|
167
|
+
Returns:
|
|
168
|
+
Description of return value.
|
|
169
|
+
|
|
170
|
+
Raises:
|
|
171
|
+
ValueError: When parameter is invalid.
|
|
172
|
+
"""
|
|
173
|
+
pass
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
## Release Process
|
|
177
|
+
|
|
178
|
+
1. **Update Version**: Increment version in `__init__.py`
|
|
179
|
+
2. **Update Changelog**: Document changes in README or CHANGELOG
|
|
180
|
+
3. **Run Tests**: Ensure all tests pass across environments
|
|
181
|
+
4. **Build Package**: `flit build`
|
|
182
|
+
5. **Test Install**: Install and test in clean environment
|
|
183
|
+
6. **Publish**: `flit publish` (to testpypi first, then pypi)
|
|
184
|
+
7. **Tag Release**: Create git tag for the version
|
|
185
|
+
8. **Update Documentation**: Ensure docs reflect new version
|
|
186
|
+
|
|
187
|
+
## Contributing
|
|
188
|
+
|
|
189
|
+
When contributing:
|
|
190
|
+
|
|
191
|
+
1. Fork the repository
|
|
192
|
+
2. Create a feature branch
|
|
193
|
+
3. Write tests for new functionality
|
|
194
|
+
4. Ensure all tests pass
|
|
195
|
+
5. Follow code style guidelines
|
|
196
|
+
6. Update documentation as needed
|
|
197
|
+
7. Submit a pull request
|
|
198
|
+
|
|
199
|
+
## Local Development Tips
|
|
200
|
+
|
|
201
|
+
### Working with the Parent Project
|
|
202
|
+
When developing wagtail_feathers within the project:
|
|
203
|
+
|
|
204
|
+
```bash
|
|
205
|
+
# Link local development version
|
|
206
|
+
pip uninstall wagtail-feathers
|
|
207
|
+
pip install -e /path/to/wagtail_feathers
|
|
208
|
+
|
|
209
|
+
# Or use pip's editable install
|
|
210
|
+
pip install -e ../wagtail_feathers
|
|
211
|
+
```
|
|
212
|
+
|
|
213
|
+
### Database Migrations
|
|
214
|
+
For testing database changes:
|
|
215
|
+
|
|
216
|
+
```bash
|
|
217
|
+
# Create test migrations
|
|
218
|
+
python -m pytest src/wagtail_feathers/tests/ --create-db
|
|
219
|
+
|
|
220
|
+
# Or run with Django management command
|
|
221
|
+
DJANGO_SETTINGS_MODULE=wagtail_feathers.tests.settings python -m django makemigrations wagtail_feathers
|
|
222
|
+
```
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025, Maxime Decooman
|
|
4
|
+
All rights reserved.
|
|
5
|
+
|
|
6
|
+
Redistribution and use in source and binary forms, with or without
|
|
7
|
+
modification, are permitted provided that the following conditions are met:
|
|
8
|
+
|
|
9
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
10
|
+
list of conditions and the following disclaimer.
|
|
11
|
+
|
|
12
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
13
|
+
this list of conditions and the following disclaimer in the documentation
|
|
14
|
+
and/or other materials provided with the distribution.
|
|
15
|
+
|
|
16
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
17
|
+
contributors may be used to endorse or promote products derived from
|
|
18
|
+
this software without specific prior written permission.
|
|
19
|
+
|
|
20
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
21
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
22
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
23
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
24
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
25
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
26
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
27
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
28
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
29
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Include important package files
|
|
2
|
+
include README.md
|
|
3
|
+
include LICENSE
|
|
4
|
+
include pyproject.toml
|
|
5
|
+
include tox.ini
|
|
6
|
+
|
|
7
|
+
# Include source code
|
|
8
|
+
recursive-include src/wagtail_feathers *.py
|
|
9
|
+
recursive-include src/wagtail_feathers *.html
|
|
10
|
+
recursive-include src/wagtail_feathers *.json
|
|
11
|
+
recursive-include src/wagtail_feathers *.txt
|
|
12
|
+
|
|
13
|
+
# Include templates and static files if any
|
|
14
|
+
recursive-include src/wagtail_feathers/templates *
|
|
15
|
+
recursive-include src/wagtail_feathers/static *
|
|
16
|
+
|
|
17
|
+
# Exclude unnecessary files
|
|
18
|
+
global-exclude *.pyc
|
|
19
|
+
global-exclude *.pyo
|
|
20
|
+
global-exclude *.pyd
|
|
21
|
+
global-exclude __pycache__
|
|
22
|
+
global-exclude .DS_Store
|
|
23
|
+
global-exclude *.so
|
|
24
|
+
global-exclude *.log
|
|
25
|
+
|
|
26
|
+
# Exclude test logs and cache
|
|
27
|
+
recursive-exclude src/wagtail_feathers/tests/logs *
|
|
28
|
+
prune src/wagtail_feathers/tests/logs
|