Silvan Spross

Results 10 comments of Silvan Spross

perfect, thx a lot!

same here... everything installed as a plugin, except inherited_resources

we experienced the same problem and the problem was a field queryset, which is somehow evaluated by `debug_toolbar.panels.templates.TemplatesPanel`. e.g. ``` class MyForm(forms.Form): user = forms.ModelChoiceField(queryset=User.objects.all()) ```

Oh we have a same problem with `NullBooleanField`s: ```python class TestSerializer(serializers.Serializer): test = serializers.NullBooleanField(required=False) bla = TestSerializer(data=QueryDict()) bla.is_valid() bla.validated_data ``` `OrderedDict([('test', False)])` Quick fix for us atm `TestSerializer(data=self.request.query_params.dict())`

thanks for reporting. added a warning to the readme file... didn't work on this since a year.

Ah ok I see, for a stage environment I agree. Maybe we should mention that, but I also agree, that this kind of stuff must not be a part of...

Related to this problem: `manage.py` is getting unusable soon after someone starts using things from `google.appengine.api` in code. Is there an easier way to get `manage.py` with the GAE stuff...

I was playing around in the mean time, and at the moment I tend to use GAE managed vm instead of "vanilla" GAE. I know it's beta right now, but...

True. Djangae is nice, but, no offence, it looks a bit bloated. I'm happy to help with a simpler solution/example!