├── .darglint ├── .editorconfig ├── .flake8 ├── .gitattributes ├── .gitignore ├── .pre-commit-config.yaml ├── .prettierignore ├── .readthedocs.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── bandit.yml ├── client ├── django-tomselect.js └── plugins │ └── dropdown_footer │ └── plugin.ts ├── compose └── django │ ├── .django │ ├── Dockerfile │ ├── entrypoint │ └── start ├── docker-compose.yml ├── docs ├── api │ ├── autocomplete_views.md │ ├── config.md │ ├── context_processor_and_middleware.md │ ├── forms.md │ ├── template_tags.md │ ├── templates.md │ └── widgets.md ├── codeofconduct.md ├── conf.py ├── contributing.md ├── example_app │ ├── article_bulk_actions.md │ ├── article_list_and_create.md │ ├── custom_content_display.md │ ├── exclude_by_primary_author.md │ ├── filter_by_category.md │ ├── filter_by_magazine.md │ ├── htmx.md │ ├── htmx_in_tabs.md │ ├── introduction.md │ ├── rich_article_select.md │ ├── styling.md │ ├── tagging.md │ ├── three_level_filter_by.md │ ├── view_range_based_data.md │ └── weighted_author_search.md ├── images │ ├── Multiple.png │ ├── Multiple_Tabular.png │ ├── Single.png │ ├── Single_Tabular.png │ ├── article-bulk-action1.png │ ├── article-bulk-action2.png │ ├── article-list.png │ ├── article-update1.png │ ├── article-update2.png │ ├── custom-content.png │ ├── exclude-by-primary-author.png │ ├── filter-by-category.png │ ├── filter-by-magazine.png │ ├── range-preview1.png │ ├── range-preview2.png │ ├── rich-article-select1.png │ ├── rich-article-select2.png │ ├── tagging1.png │ ├── tagging2.png │ ├── three-level-filter-by.png │ └── weighted-author-search.png ├── index.md ├── license.md ├── requirements.txt ├── terminology.md └── usage.md ├── example_project ├── __init__.py ├── asgi.py ├── conftest.py ├── example │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── autocompletes.py │ ├── forms │ │ ├── __init__.py │ │ ├── advanced_demos.py │ │ ├── basic_demos.py │ │ ├── crud.py │ │ ├── intermediate_demos.py │ │ └── oddball_model_forms.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── article_titles.txt │ │ │ ├── author_names.txt │ │ │ ├── create_examples.py │ │ │ └── topics.txt │ ├── middleware.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_modelwithpkidanduuidid_modelwithuuidpk.py │ │ └── __init__.py │ ├── models.py │ ├── request.py │ ├── templates │ │ └── example │ │ │ ├── advanced_demos │ │ │ ├── article_detail.html │ │ │ ├── article_form.html │ │ │ ├── article_list.html │ │ │ ├── articles_table.html │ │ │ ├── bulk_action.html │ │ │ ├── market_selection.html │ │ │ └── rich_article_select.html │ │ │ ├── base_with_bootstrap4.html │ │ │ ├── base_with_bootstrap5.html │ │ │ ├── base_with_default.html │ │ │ ├── basic_demos │ │ │ ├── bs4.html │ │ │ ├── bs5.html │ │ │ ├── default.html │ │ │ ├── formset.html │ │ │ ├── htmx.html │ │ │ ├── htmx_fragment.html │ │ │ ├── htmx_tabs.html │ │ │ ├── model_formset.html │ │ │ └── performance_test.html │ │ │ ├── crud │ │ │ ├── author_confirm_delete.html │ │ │ ├── author_form.html │ │ │ ├── author_list.html │ │ │ ├── category_confirm_delete.html │ │ │ ├── category_detail.html │ │ │ ├── category_form.html │ │ │ ├── category_list.html │ │ │ ├── edition_confirm_delete.html │ │ │ ├── edition_form.html │ │ │ ├── edition_list.html │ │ │ ├── magazine_confirm_delete.html │ │ │ ├── magazine_form.html │ │ │ └── magazine_list.html │ │ │ ├── intermediate_demos │ │ │ ├── embargo_management.html │ │ │ ├── exclude_by.html │ │ │ ├── filter_by_category.html │ │ │ ├── filter_by_magazine.html │ │ │ ├── range_preview.html │ │ │ ├── range_preview_bars.html │ │ │ ├── tagging_publication.html │ │ │ ├── tagging_success.html │ │ │ └── weighted_author_search.html │ │ │ └── navbar_links.html │ ├── templatetags │ │ ├── __init__.py │ │ └── chart_tags.py │ ├── urls.py │ └── views │ │ ├── __init__.py │ │ ├── advanced_demos.py │ │ ├── basic_demos.py │ │ ├── crud.py │ │ └── intermediate_demos.py ├── settings.py ├── test_app_settings.py ├── test_autocompletes_iterables.py ├── test_autocompletes_model.py ├── test_cache.py ├── test_context_processors_and_middleware.py ├── test_django_tomselect.py ├── test_forms.py ├── test_oddball_models.py ├── test_template_tags.py ├── test_utils.py ├── test_widgets.py ├── urls.py └── wsgi.py ├── manage.py ├── noxfile.py ├── package.json ├── pyproject.toml ├── requirements.txt ├── scripts.just ├── src └── django_tomselect │ ├── __init__.py │ ├── app_settings.py │ ├── autocompletes.py │ ├── cache.py │ ├── constants.py │ ├── context_processors.py │ ├── forms.py │ ├── lazy_utils.py │ ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── es │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po │ ├── logging.py │ ├── middleware.py │ ├── models.py │ ├── request.py │ ├── static │ └── django_tomselect │ │ ├── css │ │ └── django-tomselect.css │ │ ├── js │ │ ├── django-tomselect.js │ │ ├── django-tomselect.min.js │ │ └── django-tomselect.min.js.map │ │ └── vendor │ │ └── tom-select │ │ └── css │ │ ├── tom-select.bootstrap4.css │ │ ├── tom-select.bootstrap4.css.map │ │ ├── tom-select.bootstrap4.min.css │ │ ├── tom-select.bootstrap4.min.css.map │ │ ├── tom-select.bootstrap5.css │ │ ├── tom-select.bootstrap5.css.map │ │ ├── tom-select.bootstrap5.min.css │ │ ├── tom-select.bootstrap5.min.css.map │ │ ├── tom-select.default.css │ │ ├── tom-select.default.css.map │ │ ├── tom-select.default.min.css │ │ └── tom-select.default.min.css.map │ ├── templates │ └── django_tomselect │ │ ├── helpers │ │ └── decode_if_needed.html │ │ ├── render │ │ ├── clear_button.html │ │ ├── dropdown_footer.html │ │ ├── dropdown_header.html │ │ ├── item.html │ │ ├── loading.html │ │ ├── loading_more.html │ │ ├── no_more_results.html │ │ ├── no_results.html │ │ ├── not_loading.html │ │ ├── optgroup.html │ │ ├── optgroup_header.html │ │ ├── option.html │ │ ├── option_create.html │ │ └── select.html │ │ ├── tomselect.html │ │ └── tomselect_setup.html │ ├── templatetags │ ├── __init__.py │ └── django_tomselect.py │ ├── utils.py │ └── widgets.py └── uv.lock /.darglint: -------------------------------------------------------------------------------- 1 | [darglint] 2 | strictness = long 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore: 2 | .nox 3 | *.html 4 | -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bandit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/bandit.yml -------------------------------------------------------------------------------- /client/django-tomselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/client/django-tomselect.js -------------------------------------------------------------------------------- /client/plugins/dropdown_footer/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/client/plugins/dropdown_footer/plugin.ts -------------------------------------------------------------------------------- /compose/django/.django: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/compose/django/.django -------------------------------------------------------------------------------- /compose/django/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/compose/django/Dockerfile -------------------------------------------------------------------------------- /compose/django/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/compose/django/entrypoint -------------------------------------------------------------------------------- /compose/django/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/compose/django/start -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/api/autocomplete_views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/api/autocomplete_views.md -------------------------------------------------------------------------------- /docs/api/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/api/config.md -------------------------------------------------------------------------------- /docs/api/context_processor_and_middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/api/context_processor_and_middleware.md -------------------------------------------------------------------------------- /docs/api/forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/api/forms.md -------------------------------------------------------------------------------- /docs/api/template_tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/api/template_tags.md -------------------------------------------------------------------------------- /docs/api/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/api/templates.md -------------------------------------------------------------------------------- /docs/api/widgets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/api/widgets.md -------------------------------------------------------------------------------- /docs/codeofconduct.md: -------------------------------------------------------------------------------- 1 | ```{include} ../CODE_OF_CONDUCT.md 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/example_app/article_bulk_actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/example_app/article_bulk_actions.md -------------------------------------------------------------------------------- /docs/example_app/article_list_and_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/example_app/article_list_and_create.md -------------------------------------------------------------------------------- /docs/example_app/custom_content_display.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/example_app/custom_content_display.md -------------------------------------------------------------------------------- /docs/example_app/exclude_by_primary_author.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/example_app/exclude_by_primary_author.md -------------------------------------------------------------------------------- /docs/example_app/filter_by_category.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/example_app/filter_by_category.md -------------------------------------------------------------------------------- /docs/example_app/filter_by_magazine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/example_app/filter_by_magazine.md -------------------------------------------------------------------------------- /docs/example_app/htmx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/example_app/htmx.md -------------------------------------------------------------------------------- /docs/example_app/htmx_in_tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/example_app/htmx_in_tabs.md -------------------------------------------------------------------------------- /docs/example_app/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/example_app/introduction.md -------------------------------------------------------------------------------- /docs/example_app/rich_article_select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/example_app/rich_article_select.md -------------------------------------------------------------------------------- /docs/example_app/styling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/example_app/styling.md -------------------------------------------------------------------------------- /docs/example_app/tagging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/example_app/tagging.md -------------------------------------------------------------------------------- /docs/example_app/three_level_filter_by.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/example_app/three_level_filter_by.md -------------------------------------------------------------------------------- /docs/example_app/view_range_based_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/example_app/view_range_based_data.md -------------------------------------------------------------------------------- /docs/example_app/weighted_author_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/example_app/weighted_author_search.md -------------------------------------------------------------------------------- /docs/images/Multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/Multiple.png -------------------------------------------------------------------------------- /docs/images/Multiple_Tabular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/Multiple_Tabular.png -------------------------------------------------------------------------------- /docs/images/Single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/Single.png -------------------------------------------------------------------------------- /docs/images/Single_Tabular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/Single_Tabular.png -------------------------------------------------------------------------------- /docs/images/article-bulk-action1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/article-bulk-action1.png -------------------------------------------------------------------------------- /docs/images/article-bulk-action2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/article-bulk-action2.png -------------------------------------------------------------------------------- /docs/images/article-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/article-list.png -------------------------------------------------------------------------------- /docs/images/article-update1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/article-update1.png -------------------------------------------------------------------------------- /docs/images/article-update2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/article-update2.png -------------------------------------------------------------------------------- /docs/images/custom-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/custom-content.png -------------------------------------------------------------------------------- /docs/images/exclude-by-primary-author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/exclude-by-primary-author.png -------------------------------------------------------------------------------- /docs/images/filter-by-category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/filter-by-category.png -------------------------------------------------------------------------------- /docs/images/filter-by-magazine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/filter-by-magazine.png -------------------------------------------------------------------------------- /docs/images/range-preview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/range-preview1.png -------------------------------------------------------------------------------- /docs/images/range-preview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/range-preview2.png -------------------------------------------------------------------------------- /docs/images/rich-article-select1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/rich-article-select1.png -------------------------------------------------------------------------------- /docs/images/rich-article-select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/rich-article-select2.png -------------------------------------------------------------------------------- /docs/images/tagging1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/tagging1.png -------------------------------------------------------------------------------- /docs/images/tagging2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/tagging2.png -------------------------------------------------------------------------------- /docs/images/three-level-filter-by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/three-level-filter-by.png -------------------------------------------------------------------------------- /docs/images/weighted-author-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/images/weighted-author-search.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/license.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/terminology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/terminology.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/docs/usage.md -------------------------------------------------------------------------------- /example_project/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize core module.""" 2 | -------------------------------------------------------------------------------- /example_project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/asgi.py -------------------------------------------------------------------------------- /example_project/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/conftest.py -------------------------------------------------------------------------------- /example_project/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/example/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/admin.py -------------------------------------------------------------------------------- /example_project/example/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/apps.py -------------------------------------------------------------------------------- /example_project/example/autocompletes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/autocompletes.py -------------------------------------------------------------------------------- /example_project/example/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/forms/__init__.py -------------------------------------------------------------------------------- /example_project/example/forms/advanced_demos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/forms/advanced_demos.py -------------------------------------------------------------------------------- /example_project/example/forms/basic_demos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/forms/basic_demos.py -------------------------------------------------------------------------------- /example_project/example/forms/crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/forms/crud.py -------------------------------------------------------------------------------- /example_project/example/forms/intermediate_demos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/forms/intermediate_demos.py -------------------------------------------------------------------------------- /example_project/example/forms/oddball_model_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/forms/oddball_model_forms.py -------------------------------------------------------------------------------- /example_project/example/management/__init__.py: -------------------------------------------------------------------------------- 1 | """Initiate the management module.""" 2 | -------------------------------------------------------------------------------- /example_project/example/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | """Initiate the management commands module.""" 2 | -------------------------------------------------------------------------------- /example_project/example/management/commands/article_titles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/management/commands/article_titles.txt -------------------------------------------------------------------------------- /example_project/example/management/commands/author_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/management/commands/author_names.txt -------------------------------------------------------------------------------- /example_project/example/management/commands/create_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/management/commands/create_examples.py -------------------------------------------------------------------------------- /example_project/example/management/commands/topics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/management/commands/topics.txt -------------------------------------------------------------------------------- /example_project/example/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/middleware.py -------------------------------------------------------------------------------- /example_project/example/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/migrations/0001_initial.py -------------------------------------------------------------------------------- /example_project/example/migrations/0002_modelwithpkidanduuidid_modelwithuuidpk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/migrations/0002_modelwithpkidanduuidid_modelwithuuidpk.py -------------------------------------------------------------------------------- /example_project/example/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/example/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/models.py -------------------------------------------------------------------------------- /example_project/example/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/request.py -------------------------------------------------------------------------------- /example_project/example/templates/example/advanced_demos/article_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/advanced_demos/article_detail.html -------------------------------------------------------------------------------- /example_project/example/templates/example/advanced_demos/article_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/advanced_demos/article_form.html -------------------------------------------------------------------------------- /example_project/example/templates/example/advanced_demos/article_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/advanced_demos/article_list.html -------------------------------------------------------------------------------- /example_project/example/templates/example/advanced_demos/articles_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/advanced_demos/articles_table.html -------------------------------------------------------------------------------- /example_project/example/templates/example/advanced_demos/bulk_action.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/advanced_demos/bulk_action.html -------------------------------------------------------------------------------- /example_project/example/templates/example/advanced_demos/market_selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/advanced_demos/market_selection.html -------------------------------------------------------------------------------- /example_project/example/templates/example/advanced_demos/rich_article_select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/advanced_demos/rich_article_select.html -------------------------------------------------------------------------------- /example_project/example/templates/example/base_with_bootstrap4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/base_with_bootstrap4.html -------------------------------------------------------------------------------- /example_project/example/templates/example/base_with_bootstrap5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/base_with_bootstrap5.html -------------------------------------------------------------------------------- /example_project/example/templates/example/base_with_default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/base_with_default.html -------------------------------------------------------------------------------- /example_project/example/templates/example/basic_demos/bs4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/basic_demos/bs4.html -------------------------------------------------------------------------------- /example_project/example/templates/example/basic_demos/bs5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/basic_demos/bs5.html -------------------------------------------------------------------------------- /example_project/example/templates/example/basic_demos/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/basic_demos/default.html -------------------------------------------------------------------------------- /example_project/example/templates/example/basic_demos/formset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/basic_demos/formset.html -------------------------------------------------------------------------------- /example_project/example/templates/example/basic_demos/htmx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/basic_demos/htmx.html -------------------------------------------------------------------------------- /example_project/example/templates/example/basic_demos/htmx_fragment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/basic_demos/htmx_fragment.html -------------------------------------------------------------------------------- /example_project/example/templates/example/basic_demos/htmx_tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/basic_demos/htmx_tabs.html -------------------------------------------------------------------------------- /example_project/example/templates/example/basic_demos/model_formset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/basic_demos/model_formset.html -------------------------------------------------------------------------------- /example_project/example/templates/example/basic_demos/performance_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/basic_demos/performance_test.html -------------------------------------------------------------------------------- /example_project/example/templates/example/crud/author_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/crud/author_confirm_delete.html -------------------------------------------------------------------------------- /example_project/example/templates/example/crud/author_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/crud/author_form.html -------------------------------------------------------------------------------- /example_project/example/templates/example/crud/author_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/crud/author_list.html -------------------------------------------------------------------------------- /example_project/example/templates/example/crud/category_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/crud/category_confirm_delete.html -------------------------------------------------------------------------------- /example_project/example/templates/example/crud/category_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/crud/category_detail.html -------------------------------------------------------------------------------- /example_project/example/templates/example/crud/category_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/crud/category_form.html -------------------------------------------------------------------------------- /example_project/example/templates/example/crud/category_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/crud/category_list.html -------------------------------------------------------------------------------- /example_project/example/templates/example/crud/edition_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/crud/edition_confirm_delete.html -------------------------------------------------------------------------------- /example_project/example/templates/example/crud/edition_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/crud/edition_form.html -------------------------------------------------------------------------------- /example_project/example/templates/example/crud/edition_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/crud/edition_list.html -------------------------------------------------------------------------------- /example_project/example/templates/example/crud/magazine_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/crud/magazine_confirm_delete.html -------------------------------------------------------------------------------- /example_project/example/templates/example/crud/magazine_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/crud/magazine_form.html -------------------------------------------------------------------------------- /example_project/example/templates/example/crud/magazine_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/crud/magazine_list.html -------------------------------------------------------------------------------- /example_project/example/templates/example/intermediate_demos/embargo_management.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/intermediate_demos/embargo_management.html -------------------------------------------------------------------------------- /example_project/example/templates/example/intermediate_demos/exclude_by.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/intermediate_demos/exclude_by.html -------------------------------------------------------------------------------- /example_project/example/templates/example/intermediate_demos/filter_by_category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/intermediate_demos/filter_by_category.html -------------------------------------------------------------------------------- /example_project/example/templates/example/intermediate_demos/filter_by_magazine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/intermediate_demos/filter_by_magazine.html -------------------------------------------------------------------------------- /example_project/example/templates/example/intermediate_demos/range_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/intermediate_demos/range_preview.html -------------------------------------------------------------------------------- /example_project/example/templates/example/intermediate_demos/range_preview_bars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/intermediate_demos/range_preview_bars.html -------------------------------------------------------------------------------- /example_project/example/templates/example/intermediate_demos/tagging_publication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/intermediate_demos/tagging_publication.html -------------------------------------------------------------------------------- /example_project/example/templates/example/intermediate_demos/tagging_success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/intermediate_demos/tagging_success.html -------------------------------------------------------------------------------- /example_project/example/templates/example/intermediate_demos/weighted_author_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/intermediate_demos/weighted_author_search.html -------------------------------------------------------------------------------- /example_project/example/templates/example/navbar_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templates/example/navbar_links.html -------------------------------------------------------------------------------- /example_project/example/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | """Initiate the management commands module.""" 2 | -------------------------------------------------------------------------------- /example_project/example/templatetags/chart_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/templatetags/chart_tags.py -------------------------------------------------------------------------------- /example_project/example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/urls.py -------------------------------------------------------------------------------- /example_project/example/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/views/__init__.py -------------------------------------------------------------------------------- /example_project/example/views/advanced_demos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/views/advanced_demos.py -------------------------------------------------------------------------------- /example_project/example/views/basic_demos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/views/basic_demos.py -------------------------------------------------------------------------------- /example_project/example/views/crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/views/crud.py -------------------------------------------------------------------------------- /example_project/example/views/intermediate_demos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/example/views/intermediate_demos.py -------------------------------------------------------------------------------- /example_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/settings.py -------------------------------------------------------------------------------- /example_project/test_app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/test_app_settings.py -------------------------------------------------------------------------------- /example_project/test_autocompletes_iterables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/test_autocompletes_iterables.py -------------------------------------------------------------------------------- /example_project/test_autocompletes_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/test_autocompletes_model.py -------------------------------------------------------------------------------- /example_project/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/test_cache.py -------------------------------------------------------------------------------- /example_project/test_context_processors_and_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/test_context_processors_and_middleware.py -------------------------------------------------------------------------------- /example_project/test_django_tomselect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/test_django_tomselect.py -------------------------------------------------------------------------------- /example_project/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/test_forms.py -------------------------------------------------------------------------------- /example_project/test_oddball_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/test_oddball_models.py -------------------------------------------------------------------------------- /example_project/test_template_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/test_template_tags.py -------------------------------------------------------------------------------- /example_project/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/test_utils.py -------------------------------------------------------------------------------- /example_project/test_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/test_widgets.py -------------------------------------------------------------------------------- /example_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/urls.py -------------------------------------------------------------------------------- /example_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/example_project/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/manage.py -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/noxfile.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts.just: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/scripts.just -------------------------------------------------------------------------------- /src/django_tomselect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/__init__.py -------------------------------------------------------------------------------- /src/django_tomselect/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/app_settings.py -------------------------------------------------------------------------------- /src/django_tomselect/autocompletes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/autocompletes.py -------------------------------------------------------------------------------- /src/django_tomselect/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/cache.py -------------------------------------------------------------------------------- /src/django_tomselect/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/constants.py -------------------------------------------------------------------------------- /src/django_tomselect/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/context_processors.py -------------------------------------------------------------------------------- /src/django_tomselect/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/forms.py -------------------------------------------------------------------------------- /src/django_tomselect/lazy_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/lazy_utils.py -------------------------------------------------------------------------------- /src/django_tomselect/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/django_tomselect/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/django_tomselect/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/django_tomselect/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/django_tomselect/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/logging.py -------------------------------------------------------------------------------- /src/django_tomselect/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/middleware.py -------------------------------------------------------------------------------- /src/django_tomselect/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/models.py -------------------------------------------------------------------------------- /src/django_tomselect/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/request.py -------------------------------------------------------------------------------- /src/django_tomselect/static/django_tomselect/css/django-tomselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/static/django_tomselect/css/django-tomselect.css -------------------------------------------------------------------------------- /src/django_tomselect/static/django_tomselect/js/django-tomselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/static/django_tomselect/js/django-tomselect.js -------------------------------------------------------------------------------- /src/django_tomselect/static/django_tomselect/js/django-tomselect.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/static/django_tomselect/js/django-tomselect.min.js -------------------------------------------------------------------------------- /src/django_tomselect/static/django_tomselect/js/django-tomselect.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/static/django_tomselect/js/django-tomselect.min.js.map -------------------------------------------------------------------------------- /src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.bootstrap4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.bootstrap4.css -------------------------------------------------------------------------------- /src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.bootstrap4.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.bootstrap4.css.map -------------------------------------------------------------------------------- /src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.bootstrap4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.bootstrap4.min.css -------------------------------------------------------------------------------- /src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.bootstrap4.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.bootstrap4.min.css.map -------------------------------------------------------------------------------- /src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.bootstrap5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.bootstrap5.css -------------------------------------------------------------------------------- /src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.bootstrap5.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.bootstrap5.css.map -------------------------------------------------------------------------------- /src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.bootstrap5.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.bootstrap5.min.css -------------------------------------------------------------------------------- /src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.bootstrap5.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.bootstrap5.min.css.map -------------------------------------------------------------------------------- /src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.default.css -------------------------------------------------------------------------------- /src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.default.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.default.css.map -------------------------------------------------------------------------------- /src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.default.min.css -------------------------------------------------------------------------------- /src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.default.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/static/django_tomselect/vendor/tom-select/css/tom-select.default.min.css.map -------------------------------------------------------------------------------- /src/django_tomselect/templates/django_tomselect/helpers/decode_if_needed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/templates/django_tomselect/helpers/decode_if_needed.html -------------------------------------------------------------------------------- /src/django_tomselect/templates/django_tomselect/render/clear_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/templates/django_tomselect/render/clear_button.html -------------------------------------------------------------------------------- /src/django_tomselect/templates/django_tomselect/render/dropdown_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/templates/django_tomselect/render/dropdown_footer.html -------------------------------------------------------------------------------- /src/django_tomselect/templates/django_tomselect/render/dropdown_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/templates/django_tomselect/render/dropdown_header.html -------------------------------------------------------------------------------- /src/django_tomselect/templates/django_tomselect/render/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/templates/django_tomselect/render/item.html -------------------------------------------------------------------------------- /src/django_tomselect/templates/django_tomselect/render/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/templates/django_tomselect/render/loading.html -------------------------------------------------------------------------------- /src/django_tomselect/templates/django_tomselect/render/loading_more.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/templates/django_tomselect/render/loading_more.html -------------------------------------------------------------------------------- /src/django_tomselect/templates/django_tomselect/render/no_more_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/templates/django_tomselect/render/no_more_results.html -------------------------------------------------------------------------------- /src/django_tomselect/templates/django_tomselect/render/no_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/templates/django_tomselect/render/no_results.html -------------------------------------------------------------------------------- /src/django_tomselect/templates/django_tomselect/render/not_loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/templates/django_tomselect/render/not_loading.html -------------------------------------------------------------------------------- /src/django_tomselect/templates/django_tomselect/render/optgroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/templates/django_tomselect/render/optgroup.html -------------------------------------------------------------------------------- /src/django_tomselect/templates/django_tomselect/render/optgroup_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/templates/django_tomselect/render/optgroup_header.html -------------------------------------------------------------------------------- /src/django_tomselect/templates/django_tomselect/render/option.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/templates/django_tomselect/render/option.html -------------------------------------------------------------------------------- /src/django_tomselect/templates/django_tomselect/render/option_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/templates/django_tomselect/render/option_create.html -------------------------------------------------------------------------------- /src/django_tomselect/templates/django_tomselect/render/select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/templates/django_tomselect/render/select.html -------------------------------------------------------------------------------- /src/django_tomselect/templates/django_tomselect/tomselect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/templates/django_tomselect/tomselect.html -------------------------------------------------------------------------------- /src/django_tomselect/templates/django_tomselect/tomselect_setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/templates/django_tomselect/tomselect_setup.html -------------------------------------------------------------------------------- /src/django_tomselect/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/django_tomselect/templatetags/django_tomselect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/templatetags/django_tomselect.py -------------------------------------------------------------------------------- /src/django_tomselect/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/utils.py -------------------------------------------------------------------------------- /src/django_tomselect/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/src/django_tomselect/widgets.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmenApps/django-tomselect/HEAD/uv.lock --------------------------------------------------------------------------------