Miroslav Shubernetskiy
Miroslav Shubernetskiy
``` Traceback: File "/Volumes/Data/Users/miki725/.virtualenvs/gevent/lib/python2.7/site-packages/django/core/handlers/base.py" in get_response 111. response = wrapped_callback(request, *callback_args, **callback_kwargs) File "/Volumes/Data/Users/miki725/.virtualenvs/gevent/lib/python2.7/site-packages/django/contrib/admin/options.py" in wrapper 583. return self.admin_site.admin_view(view)(*args, **kwargs) File "/Volumes/Data/Users/miki725/.virtualenvs/gevent/lib/python2.7/site-packages/django/utils/decorators.py" in _wrapped_view 105. response = view_func(request, *args, **kwargs)...
related to #30 this simply adds some test cases but does not actually fix anything since the bug itself is in DRF
Having form validate all of the query data, might as well add ordering support.
I imagine most native Django integration will attempt to use a form for the filtering on the list pages. Therefore it probably makes sense to provide a way to create...
Taking these models: ``` class Place(models.Model): name = models.CharField(max_length=50) address = models.CharField(max_length=80) class Restaurant(models.Model): place = models.OneToOneField(Place, primary_key=True) serves_hot_dogs = models.BooleanField(default=False) serves_pizza = models.BooleanField(default=False) ``` `RestaurantFilterSet` should then include both...
`ModelFilterSet` should support to specify lookups in `Meta`: ``` python class Meta: model = Foo lookups = { "slug": ('exact', 'startswith',), "title": ALL, } ```
small doc fix in readme
Is anybody aware of a package with a collection of django-configurations mixins for common configurations such as S3 storage, etc. Basically which would allow pattern something like: ```python from configurations...
Added a way to view files from stacktrace. Useful when looking at SQL panel which allows to view code directly in debugging without having a need to jump to editor....
With default profiler max depth of 10, everything works as expected. However when increasing that number to higher threshold starting to get these: ```python Traceback (most recent call last): File...