Bogumil Schube

Results 7 comments of Bogumil Schube

I think it is not easy to determine in middleware if a request is for the admin interface. (there can be more than one.) So i wrote a class for...

Sorry my approach worked only for the overview of objects, not for editing. I changed it to [https://github.com/limugob/big_eggs/blob/master/big_eggs/tenants/middleware.py](https://github.com/limugob/big_eggs/blob/master/big_eggs/tenants/middleware.py)

Describing in docs would be good. But I think that, when the package django-scopes breaks this command, it should patch it. Other commands are also affected like datamigrations and shell...

Hello @vitalik, thanks for this interesting lib, we use it already! The described bug can not come directly from django url resolver, because in django it is possible to give...

Thanks, I see now, that even in django-rest-framework it is the same.

The normal implementation of ListView fills beside the variable `object_list⁣` the `model_name_list` variable with the same data. But this PR omits the `model_name_list` variable.

I mean, if I have a ListView for the model `Dog` then in https://github.com/django/django/blob/192bc7a7be92e20cc250907fb4083df689715679/django/views/generic/list.py#L145 the template variable `dogs_list` is filled (together with `objects_list`). But with this PR only the `objects_list`...