├── .github └── workflows │ └── test.yml ├── .gitignore ├── .travis.yml ├── CONTRIBUTORS ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── .gitignore ├── Makefile ├── conf.py ├── forms.rst ├── index.rst ├── make.bat ├── reference.rst ├── requirements.txt ├── rss.rst ├── setup.rst ├── signals.rst └── usage.rst ├── manage.py ├── release.sh ├── runtests.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── app │ ├── __init__.py │ ├── feeds.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_newsindex_body_alter_newsindextag_tag_and_more.py │ │ └── __init__.py │ ├── models.py │ ├── settings.py │ ├── templates │ │ └── app │ │ │ ├── news_index.html │ │ │ └── newsitem.html │ └── urls.py ├── test_admin.py ├── test_blocks.py ├── test_deprecation.py ├── test_editing.py ├── test_feed.py ├── test_newsindex.py ├── test_newsitem.py ├── test_permissions.py ├── test_tags.py └── test_urls.py ├── tox.ini └── wagtailnews ├── __init__.py ├── blocks.py ├── conf.py ├── decorators.py ├── deprecation.py ├── feeds.py ├── forms.py ├── menu.py ├── models.py ├── permissions.py ├── signals.py ├── static └── js │ └── news_chooser.js ├── templates └── wagtailnews │ ├── choose.html │ ├── create.html │ ├── edit.html │ ├── index.html │ ├── newsitem_list.html │ ├── search.html │ ├── search_form.html │ ├── search_results.html │ └── slim_header.html ├── templatetags ├── __init__.py └── wagtailnews_admin_tags.py ├── urls.py ├── version.py ├── views ├── __init__.py ├── chooser.py └── editor.py └── wagtail_hooks.py /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/README.rst -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/forms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/docs/forms.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/docs/reference.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/rss.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/docs/rss.rst -------------------------------------------------------------------------------- /docs/setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/docs/setup.rst -------------------------------------------------------------------------------- /docs/signals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/docs/signals.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/manage.py -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/release.sh -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/app/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/tests/app/feeds.py -------------------------------------------------------------------------------- /tests/app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/tests/app/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/app/migrations/0002_newsindex_body_alter_newsindextag_tag_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/tests/app/migrations/0002_newsindex_body_alter_newsindextag_tag_and_more.py -------------------------------------------------------------------------------- /tests/app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/tests/app/models.py -------------------------------------------------------------------------------- /tests/app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/tests/app/settings.py -------------------------------------------------------------------------------- /tests/app/templates/app/news_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/tests/app/templates/app/news_index.html -------------------------------------------------------------------------------- /tests/app/templates/app/newsitem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/tests/app/templates/app/newsitem.html -------------------------------------------------------------------------------- /tests/app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/tests/app/urls.py -------------------------------------------------------------------------------- /tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/tests/test_admin.py -------------------------------------------------------------------------------- /tests/test_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/tests/test_blocks.py -------------------------------------------------------------------------------- /tests/test_deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/tests/test_deprecation.py -------------------------------------------------------------------------------- /tests/test_editing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/tests/test_editing.py -------------------------------------------------------------------------------- /tests/test_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/tests/test_feed.py -------------------------------------------------------------------------------- /tests/test_newsindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/tests/test_newsindex.py -------------------------------------------------------------------------------- /tests/test_newsitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/tests/test_newsitem.py -------------------------------------------------------------------------------- /tests/test_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/tests/test_permissions.py -------------------------------------------------------------------------------- /tests/test_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/tests/test_tags.py -------------------------------------------------------------------------------- /tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/tests/test_urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/tox.ini -------------------------------------------------------------------------------- /wagtailnews/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/__init__.py -------------------------------------------------------------------------------- /wagtailnews/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/blocks.py -------------------------------------------------------------------------------- /wagtailnews/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/conf.py -------------------------------------------------------------------------------- /wagtailnews/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/decorators.py -------------------------------------------------------------------------------- /wagtailnews/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/deprecation.py -------------------------------------------------------------------------------- /wagtailnews/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/feeds.py -------------------------------------------------------------------------------- /wagtailnews/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/forms.py -------------------------------------------------------------------------------- /wagtailnews/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/menu.py -------------------------------------------------------------------------------- /wagtailnews/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/models.py -------------------------------------------------------------------------------- /wagtailnews/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/permissions.py -------------------------------------------------------------------------------- /wagtailnews/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/signals.py -------------------------------------------------------------------------------- /wagtailnews/static/js/news_chooser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/static/js/news_chooser.js -------------------------------------------------------------------------------- /wagtailnews/templates/wagtailnews/choose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/templates/wagtailnews/choose.html -------------------------------------------------------------------------------- /wagtailnews/templates/wagtailnews/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/templates/wagtailnews/create.html -------------------------------------------------------------------------------- /wagtailnews/templates/wagtailnews/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/templates/wagtailnews/edit.html -------------------------------------------------------------------------------- /wagtailnews/templates/wagtailnews/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/templates/wagtailnews/index.html -------------------------------------------------------------------------------- /wagtailnews/templates/wagtailnews/newsitem_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/templates/wagtailnews/newsitem_list.html -------------------------------------------------------------------------------- /wagtailnews/templates/wagtailnews/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/templates/wagtailnews/search.html -------------------------------------------------------------------------------- /wagtailnews/templates/wagtailnews/search_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/templates/wagtailnews/search_form.html -------------------------------------------------------------------------------- /wagtailnews/templates/wagtailnews/search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/templates/wagtailnews/search_results.html -------------------------------------------------------------------------------- /wagtailnews/templates/wagtailnews/slim_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/templates/wagtailnews/slim_header.html -------------------------------------------------------------------------------- /wagtailnews/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wagtailnews/templatetags/wagtailnews_admin_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/templatetags/wagtailnews_admin_tags.py -------------------------------------------------------------------------------- /wagtailnews/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/urls.py -------------------------------------------------------------------------------- /wagtailnews/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/version.py -------------------------------------------------------------------------------- /wagtailnews/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wagtailnews/views/chooser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/views/chooser.py -------------------------------------------------------------------------------- /wagtailnews/views/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/views/editor.py -------------------------------------------------------------------------------- /wagtailnews/wagtail_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neon-jungle/wagtailnews/HEAD/wagtailnews/wagtail_hooks.py --------------------------------------------------------------------------------