django-rest-framework-braces icon indicating copy to clipboard operation
django-rest-framework-braces copied to clipboard

Collection of utilities for working with django rest framework (DRF)

Results 14 django-rest-framework-braces issues
Sort by recently updated
recently updated
newest added
trafficstars

Fixes https://github.com/dealertrack/django-rest-framework-braces/issues/32

These three tests started failing with https://github.com/encode/django-rest-framework/releases/tag/3.13.0, relnotes https://github.com/encode/django-rest-framework/blob/master/docs/community/3.13-announcement.md (but the main change there doesnt seem related), so something in https://github.com/encode/django-rest-framework/compare/3.12.4...3.13.0 ```py [ 53s] =================================== FAILURES =================================== [ 53s] ____________________...

Here is what it looks like once enabled: https://github.com/jayvdb/django-rest-framework-braces/runs/6433184174

PyPI has 0.3.4, but the latest Github tag is 0.3.3

ChoiceField serialiser is not compatible with ChoiceField from Django 3.2 models ``` .... File "/Users/bikemap/projects/outdoorish/venv/lib/python3.6/site-packages/rest_framework/serializers.py", line 349, in fields for key, value in self.get_fields().items(): File "/Users/bikemap/projects/outdoorish/venv/lib/python3.6/site-packages/drf_braces/serializers/form_serializer.py", line 235, in get_fields...

Hello, i have a modelForm, like this: ```python class PhotographyAPIForm(forms.ModelForm): class Meta: model = Photography fields = '__all__' ``` And i wanted to 'convert' this form to a serializer: ```python...

[Here](http://django-rest-framework-braces.readthedocs.io/en/stable/overview.html#serializerform) described how to create form from serializer class (MyForm). But actually this does not work because there is no fields attribute declared in Meta. Why _drf_braces.forms.serializer_form.SerializerFormOptions_ does not populates...

Hi, while building with Django 3.1 I get the following error: ``` [ 39s] FAIL: test_to_python_not_iso8601 (drf_braces.tests.forms.test_fields.TestISO8601DateTimeField) [ 39s] ---------------------------------------------------------------------- [ 39s] Traceback (most recent call last): [ 39s] File...

Even though `EnforceValidationFieldMixin` (https://github.com/dealertrack/django-rest-framework-braces/blob/master/drf_braces/serializers/enforce_validation_serializer.py#L10) is added to the MRO of the Serializer and all nested Serializers, the `Serializer's.run_validation` method still does not run the `EnforceValidationFieldMixin.run_validation` method or those of any...

Add support to URLField ``` website = forms.URLField(required=True) ```