blag

Results 283 comments of blag

Can you explain a little bit more how you think this should be rendered when its a readonly field? I adjusted how the field is displayed in commit [`01dcad2`](https://github.com/goinnn/django-multiselectfield/commit/01dcad230dc368b88a39bfc36f90ddd145f381a2#diff-70d575daf907f146ef4d342520a04ddb) (currently...

I'm curious as to how common needing `.distinct()` is. We can either include an option for adding `.distinct()` to the queryset ("small hammer" approach) or we can add an option...

Just FYI: you don't have to post images of code. You can use [GitHub Flavored Markdown](https://help.github.com/articles/about-writing-and-formatting-on-github/) - you can even tell GitHub to do [syntax highlighting](https://help.github.com/articles/creating-and-highlighting-code-blocks/#syntax-highlighting) for you!

Hmmm, that's a good point. I'm leaning more towards the big hammer approach then. Something like this: ``` python def filter_books(queryset, *args, **kwargs): return queryset.order_by("id").distinct() class Book(models.Model): publication = models.ForeignKey(Publication)...

That...is probably a better solution. 👍

This is already possible if you use the `smart_selects.form_fields.ChainedModelChoiceField` and `smart_selects.form_fields.ChainedManyToManyField` directly. My [`custom-manager` branch](https://github.com/blag/django-smart-selects/tree/custom-manager) should allow you to do this. You should simply specify the name of the custom...

I will try to take a look into this in a few days and fix it - please ping me if I forget.

The Travis CI failures are due to old versions of Python, not due to this change.

This is a little difficult to parse out. Can you post (relevant excerpts from) your `models.py` and show me what you're trying to do?

Awesome, that makes the issue much more clear. It sounds like for each individual company (eg: `Customer`) you could have different people internal to that company (`Contact`) responsible for different...