├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── PYPIREADME.rst ├── README.rst ├── screenshot.png ├── setup.cfg ├── setup.py ├── tox.ini └── wagtail_embed_videos ├── __init__.py ├── admin.py ├── admin_urls.py ├── apps.py ├── blocks.py ├── edit_handlers.py ├── forms.py ├── locale ├── pt_BR │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po └── ru │ └── LC_MESSAGES │ ├── django.mo │ └── django.po ├── migrations ├── 0001_initial.py ├── 0002_auto_20180822_0945.py ├── 0003_embedvideo_collection.py ├── 0004_auto_20211103_0746.py ├── 0005_auto_20211103_0802.py ├── 0006_auto_20211104_0557.py ├── 0007_auto_20211109_0511.py └── __init__.py ├── models.py ├── permissions.py ├── static └── wagtail_embed_videos │ ├── css │ └── embed-video-chooser.css │ └── js │ ├── embed-video-chooser-modal.js │ └── embed-video-chooser.js ├── templates └── wagtail_embed_videos │ ├── bulk_actions │ ├── confirm_bulk_add_tags.html │ ├── confirm_bulk_add_to_collection.html │ ├── confirm_bulk_delete.html │ └── list_items_with_no_access.html │ ├── chooser │ ├── chooser.html │ ├── results.html │ └── upload_form.html │ ├── edit_handlers │ └── embed_video_chooser_panel.html │ ├── embed_videos │ ├── add.html │ ├── confirm_delete.html │ ├── edit.html │ ├── index.html │ ├── results.html │ ├── results_video.html │ └── usage.html │ ├── homepage │ └── site_summary_videos.html │ ├── permissions │ └── includes │ │ └── embedvideo_permissions_formset.html │ └── widgets │ └── embed_video_chooser.html ├── tests ├── __init__.py ├── models.py ├── settings.py ├── test_model.py └── urls.py ├── views ├── __init__.py ├── bulk_actions │ ├── __init__.py │ ├── add_tags.py │ ├── add_to_collection.py │ ├── delete.py │ └── embed_video_bulk_action.py ├── chooser.py └── embed_videos.py ├── wagtail_hooks.py └── widgets.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /PYPIREADME.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/PYPIREADME.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/README.rst -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/screenshot.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/tox.ini -------------------------------------------------------------------------------- /wagtail_embed_videos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/__init__.py -------------------------------------------------------------------------------- /wagtail_embed_videos/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/admin.py -------------------------------------------------------------------------------- /wagtail_embed_videos/admin_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/admin_urls.py -------------------------------------------------------------------------------- /wagtail_embed_videos/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/apps.py -------------------------------------------------------------------------------- /wagtail_embed_videos/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/blocks.py -------------------------------------------------------------------------------- /wagtail_embed_videos/edit_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/edit_handlers.py -------------------------------------------------------------------------------- /wagtail_embed_videos/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/forms.py -------------------------------------------------------------------------------- /wagtail_embed_videos/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /wagtail_embed_videos/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /wagtail_embed_videos/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /wagtail_embed_videos/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /wagtail_embed_videos/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/migrations/0001_initial.py -------------------------------------------------------------------------------- /wagtail_embed_videos/migrations/0002_auto_20180822_0945.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/migrations/0002_auto_20180822_0945.py -------------------------------------------------------------------------------- /wagtail_embed_videos/migrations/0003_embedvideo_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/migrations/0003_embedvideo_collection.py -------------------------------------------------------------------------------- /wagtail_embed_videos/migrations/0004_auto_20211103_0746.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/migrations/0004_auto_20211103_0746.py -------------------------------------------------------------------------------- /wagtail_embed_videos/migrations/0005_auto_20211103_0802.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/migrations/0005_auto_20211103_0802.py -------------------------------------------------------------------------------- /wagtail_embed_videos/migrations/0006_auto_20211104_0557.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/migrations/0006_auto_20211104_0557.py -------------------------------------------------------------------------------- /wagtail_embed_videos/migrations/0007_auto_20211109_0511.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/migrations/0007_auto_20211109_0511.py -------------------------------------------------------------------------------- /wagtail_embed_videos/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wagtail_embed_videos/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/models.py -------------------------------------------------------------------------------- /wagtail_embed_videos/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/permissions.py -------------------------------------------------------------------------------- /wagtail_embed_videos/static/wagtail_embed_videos/css/embed-video-chooser.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/static/wagtail_embed_videos/css/embed-video-chooser.css -------------------------------------------------------------------------------- /wagtail_embed_videos/static/wagtail_embed_videos/js/embed-video-chooser-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/static/wagtail_embed_videos/js/embed-video-chooser-modal.js -------------------------------------------------------------------------------- /wagtail_embed_videos/static/wagtail_embed_videos/js/embed-video-chooser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/static/wagtail_embed_videos/js/embed-video-chooser.js -------------------------------------------------------------------------------- /wagtail_embed_videos/templates/wagtail_embed_videos/bulk_actions/confirm_bulk_add_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/templates/wagtail_embed_videos/bulk_actions/confirm_bulk_add_tags.html -------------------------------------------------------------------------------- /wagtail_embed_videos/templates/wagtail_embed_videos/bulk_actions/confirm_bulk_add_to_collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/templates/wagtail_embed_videos/bulk_actions/confirm_bulk_add_to_collection.html -------------------------------------------------------------------------------- /wagtail_embed_videos/templates/wagtail_embed_videos/bulk_actions/confirm_bulk_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/templates/wagtail_embed_videos/bulk_actions/confirm_bulk_delete.html -------------------------------------------------------------------------------- /wagtail_embed_videos/templates/wagtail_embed_videos/bulk_actions/list_items_with_no_access.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/templates/wagtail_embed_videos/bulk_actions/list_items_with_no_access.html -------------------------------------------------------------------------------- /wagtail_embed_videos/templates/wagtail_embed_videos/chooser/chooser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/templates/wagtail_embed_videos/chooser/chooser.html -------------------------------------------------------------------------------- /wagtail_embed_videos/templates/wagtail_embed_videos/chooser/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/templates/wagtail_embed_videos/chooser/results.html -------------------------------------------------------------------------------- /wagtail_embed_videos/templates/wagtail_embed_videos/chooser/upload_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/templates/wagtail_embed_videos/chooser/upload_form.html -------------------------------------------------------------------------------- /wagtail_embed_videos/templates/wagtail_embed_videos/edit_handlers/embed_video_chooser_panel.html: -------------------------------------------------------------------------------- 1 | {% include "wagtailadmin/shared/field.html" %} 2 | -------------------------------------------------------------------------------- /wagtail_embed_videos/templates/wagtail_embed_videos/embed_videos/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/templates/wagtail_embed_videos/embed_videos/add.html -------------------------------------------------------------------------------- /wagtail_embed_videos/templates/wagtail_embed_videos/embed_videos/confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/templates/wagtail_embed_videos/embed_videos/confirm_delete.html -------------------------------------------------------------------------------- /wagtail_embed_videos/templates/wagtail_embed_videos/embed_videos/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/templates/wagtail_embed_videos/embed_videos/edit.html -------------------------------------------------------------------------------- /wagtail_embed_videos/templates/wagtail_embed_videos/embed_videos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/templates/wagtail_embed_videos/embed_videos/index.html -------------------------------------------------------------------------------- /wagtail_embed_videos/templates/wagtail_embed_videos/embed_videos/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/templates/wagtail_embed_videos/embed_videos/results.html -------------------------------------------------------------------------------- /wagtail_embed_videos/templates/wagtail_embed_videos/embed_videos/results_video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/templates/wagtail_embed_videos/embed_videos/results_video.html -------------------------------------------------------------------------------- /wagtail_embed_videos/templates/wagtail_embed_videos/embed_videos/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/templates/wagtail_embed_videos/embed_videos/usage.html -------------------------------------------------------------------------------- /wagtail_embed_videos/templates/wagtail_embed_videos/homepage/site_summary_videos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/templates/wagtail_embed_videos/homepage/site_summary_videos.html -------------------------------------------------------------------------------- /wagtail_embed_videos/templates/wagtail_embed_videos/permissions/includes/embedvideo_permissions_formset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/templates/wagtail_embed_videos/permissions/includes/embedvideo_permissions_formset.html -------------------------------------------------------------------------------- /wagtail_embed_videos/templates/wagtail_embed_videos/widgets/embed_video_chooser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/templates/wagtail_embed_videos/widgets/embed_video_chooser.html -------------------------------------------------------------------------------- /wagtail_embed_videos/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wagtail_embed_videos/tests/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wagtail_embed_videos/tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/tests/settings.py -------------------------------------------------------------------------------- /wagtail_embed_videos/tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/tests/test_model.py -------------------------------------------------------------------------------- /wagtail_embed_videos/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/tests/urls.py -------------------------------------------------------------------------------- /wagtail_embed_videos/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wagtail_embed_videos/views/bulk_actions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/views/bulk_actions/__init__.py -------------------------------------------------------------------------------- /wagtail_embed_videos/views/bulk_actions/add_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/views/bulk_actions/add_tags.py -------------------------------------------------------------------------------- /wagtail_embed_videos/views/bulk_actions/add_to_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/views/bulk_actions/add_to_collection.py -------------------------------------------------------------------------------- /wagtail_embed_videos/views/bulk_actions/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/views/bulk_actions/delete.py -------------------------------------------------------------------------------- /wagtail_embed_videos/views/bulk_actions/embed_video_bulk_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/views/bulk_actions/embed_video_bulk_action.py -------------------------------------------------------------------------------- /wagtail_embed_videos/views/chooser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/views/chooser.py -------------------------------------------------------------------------------- /wagtail_embed_videos/views/embed_videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/views/embed_videos.py -------------------------------------------------------------------------------- /wagtail_embed_videos/wagtail_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/wagtail_hooks.py -------------------------------------------------------------------------------- /wagtail_embed_videos/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashu/wagtail-embedvideos/HEAD/wagtail_embed_videos/widgets.py --------------------------------------------------------------------------------