james1293

Results 12 comments of james1293

@forked-from-1kasper and @mvaled , what is the status of your forks? I may be interested in contributing.

Two things - You have to add form.save_m2m() For the list display, I did .join(", ")

@MonstreCharmant I added `form.save_m2m()` in the same place, and it seems to be working. Would you like to share your fork, or do you want me to share mine? Mine...

I'm sorry that I never did share mine. I'm no longer working at the job where I was working on this, so I don't think that I would be able...

It has been 2 years, so I don't remember a lot of the details. It was something like this: - Remove the `assigned_to` field [here](https://github.com/shacker/django-todo/blob/07cd041e948738d318b6e02bbab1ecd38fc21439/todo/models.py#L85). - Add a field called...

I think I started by making sure it worked using the default multi-select interface. Then, once I was sure that that worked, I figured out how to use the pretty...

Did you add `form.save_m2m()` as discussed earlier in this thread? That may be the reason why it's not saving. I've never tried doing the checkboxes.

I don't think there's much more I can do to help right now.

@diogne thank you, hopefully @f4i5i finds that helpful! :slightly_smiling_face: If you want, you can submit a pull request to accomplish what I never succeeded in finishing :sweat_smile: By the way,...

Also, in case anyone else is having this problem, here's a workaround: ```js // add doc.validate() just before doc.save() // doc.validate() throws correctly, and will prevent .save() from running doc.validate({cast:true});...