django-smart-selects icon indicating copy to clipboard operation
django-smart-selects copied to clipboard

chained and grouped selects for django forms

Results 47 django-smart-selects issues
Sort by recently updated
recently updated
newest added
trafficstars

when I change the admin URL from ``` urlpatterns = [ path('admin/', admin.site.urls), path('chaining/', include('smart_selects.urls')), .... ``` to ``` urlpatterns = [ path('', admin.site.urls), path('chaining/', include('smart_selects.urls')), .... ``` django-smart-selects stops...

I'm trying to create a page with ability to add any amount of form-copy. I use django-smart-selects to make my form's field chained. It works fine if I have only...

### hey guys , i have problem using this with my own app forms.py . it works well in django-admin ## Steps to reproduce **_my code ->_** core/models.py ``` class...

Possibly fixed
Needs feedback
Workaround possible

You **MUST** use this template when reporting issues. Please make sure you follow the checklist and fill in all of the information sections below. ---------------- All versions of django-smart-selects prior...

Hello, i have the following model: ![image](https://cloud.githubusercontent.com/assets/7388681/19865766/8b81fb90-9f6b-11e6-9286-529a87a36d5a.png) So, when i try to filter on the form and select two options for the field 'temas' that have both shared options on...

Feature request

I would like to have an option for filtering out allready selected values for avoiding duplicate entries. For example in the test_app you can add a continent with multiple locations...

Hello folks! First of all, thank you all so much for this amazing project - simple does it! :) From my recent experience (or lack thereof), I felt the need...

## Checklist Put an `x` in the bracket when you have completed each task, like this: `[x]` - [x] This issue is not about installing previous versions of django-smart-selects older...

This PR contains modifications to properly handle `ModelMultipleChoiceField` base on `FilteredSelectMultiple` widget as chainfield. It contains also test examples with a book-store, please take a look. Here is a screenshot...

Django-smart-selects works fine for pre-existing inline forms created. But when I click on "Add new form" in the inline. The new form doesn't populate the chained field. #193