├── .babelrc ├── .coveragerc ├── .editorconfig ├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── codeql.yml │ ├── lint.yml │ ├── publish-to-live-pypi.yml │ ├── publish-to-test-pypi.yml │ └── test.yml ├── .gitignore ├── .nvmrc ├── .pre-commit-config.yaml ├── .tx └── config ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── addon.json ├── aldryn_config.py ├── djangocms_icon ├── __init__.py ├── apps.py ├── cms_plugins.py ├── fields.py ├── forms.py ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── it │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20190218_2017.py │ ├── 0003_alter_icon_cmsplugin_ptr.py │ └── __init__.py ├── models.py ├── static │ └── djangocms_icon │ │ ├── css │ │ └── djangocms-icon.css │ │ ├── js │ │ ├── base.js │ │ ├── dist │ │ │ └── bundle.icon.min.js │ │ ├── icon-picker.js │ │ ├── icon-widget.js │ │ └── libs │ │ │ ├── bootstrap-iconpicker.js │ │ │ └── iconset │ │ │ ├── iconset-elusiveicon-all.js │ │ │ ├── iconset-flagicon-all.js │ │ │ ├── iconset-fontawesome-4-all.js │ │ │ ├── iconset-fontawesome-5-brands.js │ │ │ ├── iconset-fontawesome-5-light.js │ │ │ ├── iconset-fontawesome-5-regular.js │ │ │ ├── iconset-fontawesome-5-solid.js │ │ │ ├── iconset-glyphicon-all.js │ │ │ ├── iconset-ionicon-all.js │ │ │ ├── iconset-mapicon-all.js │ │ │ ├── iconset-materialdesign-all.js │ │ │ ├── iconset-octicon-all.js │ │ │ ├── iconset-typicon-all.js │ │ │ ├── iconset-weathericon-all.js │ │ │ └── index.js │ │ └── sass │ │ ├── _popover.scss │ │ └── djangocms-icon.scss └── templates │ ├── admin │ └── djangocms_icon │ │ ├── includes │ │ └── assets.html │ │ └── widgets │ │ └── icon.html │ └── djangocms_icon │ ├── default │ └── icon.html │ └── includes │ └── icon.html ├── gulpfile.js ├── package.json ├── preview.gif ├── requirements.in ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── fixtures.py ├── requirements │ ├── base.txt │ ├── dj32_cms310.txt │ ├── dj32_cms40.txt │ ├── dj42_cms311.txt │ └── dj52_cms50.txt ├── sample_svg.json ├── sample_web.json ├── settings.py ├── test_fields.py ├── test_migrations.py ├── test_models.py └── test_plugins.py ├── tox.ini └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/.babelrc -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-live-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/.github/workflows/publish-to-live-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-test-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/.github/workflows/publish-to-test-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/.tx/config -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/README.rst -------------------------------------------------------------------------------- /addon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/addon.json -------------------------------------------------------------------------------- /aldryn_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/aldryn_config.py -------------------------------------------------------------------------------- /djangocms_icon/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.1.1' 2 | -------------------------------------------------------------------------------- /djangocms_icon/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/apps.py -------------------------------------------------------------------------------- /djangocms_icon/cms_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/cms_plugins.py -------------------------------------------------------------------------------- /djangocms_icon/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/fields.py -------------------------------------------------------------------------------- /djangocms_icon/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/forms.py -------------------------------------------------------------------------------- /djangocms_icon/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_icon/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /djangocms_icon/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_icon/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /djangocms_icon/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_icon/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /djangocms_icon/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_icon/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /djangocms_icon/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djangocms_icon/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /djangocms_icon/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/migrations/0001_initial.py -------------------------------------------------------------------------------- /djangocms_icon/migrations/0002_auto_20190218_2017.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/migrations/0002_auto_20190218_2017.py -------------------------------------------------------------------------------- /djangocms_icon/migrations/0003_alter_icon_cmsplugin_ptr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/migrations/0003_alter_icon_cmsplugin_ptr.py -------------------------------------------------------------------------------- /djangocms_icon/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangocms_icon/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/models.py -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/css/djangocms-icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/css/djangocms-icon.css -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/js/base.js -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/js/dist/bundle.icon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/js/dist/bundle.icon.min.js -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/js/icon-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/js/icon-picker.js -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/js/icon-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/js/icon-widget.js -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/js/libs/bootstrap-iconpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/js/libs/bootstrap-iconpicker.js -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-elusiveicon-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-elusiveicon-all.js -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-flagicon-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-flagicon-all.js -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-fontawesome-4-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-fontawesome-4-all.js -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-fontawesome-5-brands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-fontawesome-5-brands.js -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-fontawesome-5-light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-fontawesome-5-light.js -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-fontawesome-5-regular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-fontawesome-5-regular.js -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-fontawesome-5-solid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-fontawesome-5-solid.js -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-glyphicon-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-glyphicon-all.js -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-ionicon-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-ionicon-all.js -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-mapicon-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-mapicon-all.js -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-materialdesign-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-materialdesign-all.js -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-octicon-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-octicon-all.js -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-typicon-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-typicon-all.js -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-weathericon-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-weathericon-all.js -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/js/libs/iconset/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/js/libs/iconset/index.js -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/sass/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/sass/_popover.scss -------------------------------------------------------------------------------- /djangocms_icon/static/djangocms_icon/sass/djangocms-icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/static/djangocms_icon/sass/djangocms-icon.scss -------------------------------------------------------------------------------- /djangocms_icon/templates/admin/djangocms_icon/includes/assets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/templates/admin/djangocms_icon/includes/assets.html -------------------------------------------------------------------------------- /djangocms_icon/templates/admin/djangocms_icon/widgets/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/templates/admin/djangocms_icon/widgets/icon.html -------------------------------------------------------------------------------- /djangocms_icon/templates/djangocms_icon/default/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/templates/djangocms_icon/default/icon.html -------------------------------------------------------------------------------- /djangocms_icon/templates/djangocms_icon/includes/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/djangocms_icon/templates/djangocms_icon/includes/icon.html -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/package.json -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/preview.gif -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- 1 | bump2version 2 | Django>3.2 3 | pip-tools 4 | pre-commit 5 | wheel 6 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/tests/fixtures.py -------------------------------------------------------------------------------- /tests/requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/tests/requirements/base.txt -------------------------------------------------------------------------------- /tests/requirements/dj32_cms310.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/tests/requirements/dj32_cms310.txt -------------------------------------------------------------------------------- /tests/requirements/dj32_cms40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/tests/requirements/dj32_cms40.txt -------------------------------------------------------------------------------- /tests/requirements/dj42_cms311.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/tests/requirements/dj42_cms311.txt -------------------------------------------------------------------------------- /tests/requirements/dj52_cms50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/tests/requirements/dj52_cms50.txt -------------------------------------------------------------------------------- /tests/sample_svg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/tests/sample_svg.json -------------------------------------------------------------------------------- /tests/sample_web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/tests/sample_web.json -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/tests/test_fields.py -------------------------------------------------------------------------------- /tests/test_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/tests/test_migrations.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/tests/test_plugins.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/tox.ini -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-cms/djangocms-icon/HEAD/webpack.config.js --------------------------------------------------------------------------------