diff options
| author | Tom Christie | 2014-03-17 08:33:18 +0000 | 
|---|---|---|
| committer | Tom Christie | 2014-03-17 08:33:18 +0000 | 
| commit | dddbff59319bdefbf235f8a37af5b6ac20c4fec1 (patch) | |
| tree | 01a0970a3786593b2f776cfc5b2934aa43abf39b /docs/api-guide/fields.md | |
| parent | 57b0e84bdde2a4e11477e893d773bce03284e95e (diff) | |
| download | django-rest-framework-dddbff59319bdefbf235f8a37af5b6ac20c4fec1.tar.bz2 | |
Tweak DRF compound fields docs
Diffstat (limited to 'docs/api-guide/fields.md')
| -rw-r--r-- | docs/api-guide/fields.md | 9 | 
1 files changed, 4 insertions, 5 deletions
| diff --git a/docs/api-guide/fields.md b/docs/api-guide/fields.md index 89606798..b3d5b55a 100644 --- a/docs/api-guide/fields.md +++ b/docs/api-guide/fields.md @@ -347,16 +347,15 @@ As an example, let's create a field that can be used represent the class name of              """              return obj.__class__ -# More fields from 3rd-party packages +# Third party packages -## [drf-compound-fields](http://drf-compound-fields.readthedocs.org) +## DRF Compound Fields -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. +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.  [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 | 
