Matthias Schoettle
Matthias Schoettle
I just tested it with `TokenAuthentication` and it does not record the user in the request event. I think it is due to the fact that DRF does not plug...
Turns out that there are already some solutions, unfortunately in DRF so everyone could benefit from them. One of them is DRF JWT: https://github.com/jpadilla/django-rest-framework-jwt/issues/45#issuecomment-467576074 Basically, DRF authenticates in the view...
I have two databases set up (one called “default”) and this issue does not occur there. Is this in the case where there is no default database?
We ran into a problem when we added a second database to the Django settings. When running pytest it tried to create a database with a second `test_` prefix (`test_test_`)...
~Although it does not completely match the issue description it happens to me for `settings.DEBUG` as well.~ Sorry, my bad. I think it is unrelated since it only happens if...
The "on" before independent probably should be removed: "We couldn’t right-click and open several independent tabs as doing so just took us to the root search page." Unless it is...
Good point. That makes more sense to me.
In the source code I discovered that it is possible to specify an `admin_class` for the reverse inline: ```python class FooAdmin(ReverseModelAdmin): inline_type = 'stacked' inline_reverse = [ { 'field_name': 'bar',...
Does `bootstrap-datepicker` work with client side filtering in `bootstrap-table`? Do you happen to have an example?
I think this is the case. Just ran into this as well where the fields that are used in the first occurrence of the serializer are shown in all other...