Michael Martinez
Michael Martinez
Hi @ljharb, Sure - I'll update the whitespace and add a test tomorrow evening. Thanks for creating this project - it's super useful! :smile_cat:
I forgot about this PR. Sorry! I can update my code with a more simplified version of the original that supports the two most common scenarios in OS X: bash...
What was the decision on this? I'm getting started with All Auth today and it seems like the only way I can use it is to fork the project and...
css zoom will only work in Chrome. For cross-browser, you need to use `transform: scale()`, however this will also require some work to account for the padding.
Using a filesystem makes `django-encrypted-fields` unusable in platforms like Heroku where file system access is not possible. Please consider using an environment variable instead. It's the standard way of handling...
Greetings from November 2019. This is still broken.
Update: This fails: ```python Basemodel.objects.all().delete() ``` but this succeeds: ```python for i in Basemodel.objects.all(): i.delete() ``` Obviously it's not ideal, but it's a workaround until a fix is submitted.
I was able to work around this issue by overriding `to()` and pass in a custom queryset to the `get_ordering_queryset()` method.
Thanks I'll have a look at that.