├── .github └── workflows │ ├── ci.yml │ └── make-requirements.txt.sh ├── .gitignore ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── django_addanother ├── __init__.py ├── contrib │ ├── __init__.py │ └── select2.py ├── static │ └── django_addanother │ │ ├── addanother.css │ │ └── django_jquery.js ├── templates │ └── django_addanother │ │ └── related_widget_wrapper.html ├── views.py └── widgets.py ├── docs ├── Makefile ├── conf.py ├── demo.rst ├── django_settings.py ├── edit-related.rst ├── howitworks.rst ├── index.rst ├── installation.rst ├── make.bat ├── reference │ ├── index.rst │ ├── select2_widgets.rst │ ├── views.rst │ └── widgets.rst ├── select2.rst └── usage.rst ├── requirements.readthedocs.txt ├── setup.py └── test_project ├── __init__.py ├── manage.py ├── settings.py ├── testapp ├── __init__.py ├── admin.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── templates │ └── testapp │ │ ├── main.html │ │ └── team_form.html ├── tests.py └── views.py ├── urls.py └── wsgi.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/make-requirements.txt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/.github/workflows/make-requirements.txt.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/README.rst -------------------------------------------------------------------------------- /django_addanother/__init__.py: -------------------------------------------------------------------------------- 1 | VERSION = (2, 0, 0) 2 | -------------------------------------------------------------------------------- /django_addanother/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_addanother/contrib/select2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/django_addanother/contrib/select2.py -------------------------------------------------------------------------------- /django_addanother/static/django_addanother/addanother.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/django_addanother/static/django_addanother/addanother.css -------------------------------------------------------------------------------- /django_addanother/static/django_addanother/django_jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/django_addanother/static/django_addanother/django_jquery.js -------------------------------------------------------------------------------- /django_addanother/templates/django_addanother/related_widget_wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/django_addanother/templates/django_addanother/related_widget_wrapper.html -------------------------------------------------------------------------------- /django_addanother/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/django_addanother/views.py -------------------------------------------------------------------------------- /django_addanother/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/django_addanother/widgets.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/demo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/docs/demo.rst -------------------------------------------------------------------------------- /docs/django_settings.py: -------------------------------------------------------------------------------- 1 | SECRET_KEY = 'docs' 2 | -------------------------------------------------------------------------------- /docs/edit-related.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/docs/edit-related.rst -------------------------------------------------------------------------------- /docs/howitworks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/docs/howitworks.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/docs/reference/index.rst -------------------------------------------------------------------------------- /docs/reference/select2_widgets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/docs/reference/select2_widgets.rst -------------------------------------------------------------------------------- /docs/reference/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/docs/reference/views.rst -------------------------------------------------------------------------------- /docs/reference/widgets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/docs/reference/widgets.rst -------------------------------------------------------------------------------- /docs/select2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/docs/select2.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /requirements.readthedocs.txt: -------------------------------------------------------------------------------- 1 | django-select2 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/setup.py -------------------------------------------------------------------------------- /test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/test_project/manage.py -------------------------------------------------------------------------------- /test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/test_project/settings.py -------------------------------------------------------------------------------- /test_project/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/testapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/test_project/testapp/admin.py -------------------------------------------------------------------------------- /test_project/testapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/test_project/testapp/forms.py -------------------------------------------------------------------------------- /test_project/testapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/test_project/testapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /test_project/testapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/test_project/testapp/models.py -------------------------------------------------------------------------------- /test_project/testapp/templates/testapp/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/test_project/testapp/templates/testapp/main.html -------------------------------------------------------------------------------- /test_project/testapp/templates/testapp/team_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/test_project/testapp/templates/testapp/team_form.html -------------------------------------------------------------------------------- /test_project/testapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/test_project/testapp/tests.py -------------------------------------------------------------------------------- /test_project/testapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/test_project/testapp/views.py -------------------------------------------------------------------------------- /test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/test_project/urls.py -------------------------------------------------------------------------------- /test_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashaag/django-addanother/HEAD/test_project/wsgi.py --------------------------------------------------------------------------------