Mark Gensler

Results 25 comments of Mark Gensler

The scope appears to be reverting to the default scope between the first and second view. Is there a possibility the cache is being changed by another part of your...

There are still some boolean Item fields which are missing from BOOLEAN_FIELDS tuple which cause this issue to occur. ``IsTrackedAsInventory``, ``IsSold``, ``IsPurchased``. pyxero 0.9 in python 3.6.3

Changing this package to better integrate with `django-filter` and pagination seems a good idea. I see a few issues with this change to move the `queryset` kwarg to be passed...

As part of the examples/test cases we should switch from `__unicode__` to `__str__` and other python 3 conventions.

Hi @idahogray, thanks for the detailed report of the problem you had and how you fixed it. I agree the solution you've come up with in the `post()` is the...

@Manoel8485 Have you tried using `django.forms.forms.ModelMultipleChoiceField` in your regular form? I just used that in a project and it worked well.

The probable reason for the error is that you did not define ``fields``, ``exclude`` or a ``form_class`` which had fields/exclude set in it's meta when you defined ``StylePropsUpdateViews``. The below...

Also, forcing the evaluation of the "sub" query prevents this problem from occurring: ```python def all_orders(user): managed = list(user.orders.all().values_list("pk", flat=True)) # force evaluation of query .... ```