diff options
| author | Xavier Ordoquy | 2014-07-26 00:06:56 +0200 | 
|---|---|---|
| committer | Xavier Ordoquy | 2014-07-26 00:06:56 +0200 | 
| commit | 4876bec9f529cac69aede8e51746d8a0fd6b0d88 (patch) | |
| tree | 80290706f8c3d5b1c89a763545123cf13709953c /docs/api-guide/fields.md | |
| parent | 2489e38a06f575aa144644eee683bd87f20186ef (diff) | |
| parent | 299a8347e8ef448eefc611eebfe80d7e142ceaa1 (diff) | |
| download | django-rest-framework-4876bec9f529cac69aede8e51746d8a0fd6b0d88.tar.bz2 | |
Merge remote-tracking branch 'origin/master' into 2.4.0
Conflicts:
	rest_framework/fields.py
Diffstat (limited to 'docs/api-guide/fields.md')
| -rw-r--r-- | docs/api-guide/fields.md | 9 | 
1 files changed, 8 insertions, 1 deletions
| diff --git a/docs/api-guide/fields.md b/docs/api-guide/fields.md index 4825d9c8..d23f3d19 100644 --- a/docs/api-guide/fields.md +++ b/docs/api-guide/fields.md @@ -348,7 +348,7 @@ As an example, let's create a field that can be used represent the class name of              """              Serialize the object's class name.              """ -            return obj.__class__ +            return obj.__class__.__name__  # Third party packages @@ -358,9 +358,16 @@ The following third party packages are also available.  The [drf-compound-fields][drf-compound-fields] package provides "compound" serializer fields, such as lists of simple values, which can be described by other fields rather than serializers with the `many=True` option. Also provided are fields for typed dictionaries and values that can be either a specific type or a list of items of that type. +## DRF Extra Fields + +The [drf-extra-fields][drf-extra-fields] package provides extra serializer fields for REST framework, including `Base64ImageField` and `PointField` classes. + + +  [cite]: https://docs.djangoproject.com/en/dev/ref/forms/api/#django.forms.Form.cleaned_data  [FILE_UPLOAD_HANDLERS]: https://docs.djangoproject.com/en/dev/ref/settings/#std:setting-FILE_UPLOAD_HANDLERS  [ecma262]: http://ecma-international.org/ecma-262/5.1/#sec-15.9.1.15  [strftime]: http://docs.python.org/2/library/datetime.html#strftime-and-strptime-behavior  [iso8601]: http://www.w3.org/TR/NOTE-datetime  [drf-compound-fields]: http://drf-compound-fields.readthedocs.org +[drf-extra-fields]: https://github.com/Hipo/drf-extra-fields | 
