Arne Brodowski

Results 19 comments of Arne Brodowski

You are right, an update for Django 2 is needed! I've looked into the docs and it seems to me that models.CASCADE might be the right strategy to use. If...

Providing mixins for CBVs generally sounds like a good idea, but ... I'll have to think a bit more about this whole idea, because having all the logic at the...

Can you please try to use a checkout from master branch? I think the latest release on pypi is outdated at the moment.

Thanks for the contribution! I like the idea. I will need to test this a bit before merging though ... The one thing that bothers me currently is how the...

I opt for the third solution: allow a custom storage backend.

Looks good, thank you! I still would like to test the changes in a little example project on my dev machine. So please give me some time before it's getting...

This is a valid point. We should indeed make it configurable.

To show messages as threads, try to filter like this: `Message.objects.inbox_for(request.user).filter(parent_msg__isnull=True)` All messages where parent_msg is not null are replys in a thread. You might need to replace the inbox_for...

did you replace the inbox_for filter with two or'ed Q queries? with inbox_for it will only work for the receiver, because inbox_for does a receiver=user filter. you want receiver=user ||...