aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/fields.md
diff options
context:
space:
mode:
authorTom Christie2012-10-08 15:46:52 +0100
committerTom Christie2012-10-08 15:46:52 +0100
commitb581ffe323d88b6740abfed0fd552cc436fd2dcc (patch)
tree9951f679a9ae2ba720066d8d7651d3dd9b4e1fdc /docs/api-guide/fields.md
parent9ade21c793fae70110925bb3bf1fae2fc54fe75e (diff)
downloaddjango-rest-framework-b581ffe323d88b6740abfed0fd552cc436fd2dcc.tar.bz2
Docs tweaks
Diffstat (limited to 'docs/api-guide/fields.md')
-rw-r--r--docs/api-guide/fields.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/api-guide/fields.md b/docs/api-guide/fields.md
index 56c84981..e9833a97 100644
--- a/docs/api-guide/fields.md
+++ b/docs/api-guide/fields.md
@@ -30,6 +30,8 @@ A generic field that can be tied to any arbitrary model field. The `ModelField`
**Signature:** `ModelField(model_field=<Django ModelField class>)`
+---
+
# Typed Fields
These fields represent basic datatypes, and support both reading and writing values.
@@ -48,6 +50,8 @@ These fields represent basic datatypes, and support both reading and writing val
## FloatField
+---
+
# Relational Fields
Relational fields are used to represent model relationships. They can be applied to `ForeignKey`, `ManyToManyField` and `OneToOneField` relationships, as well as to reverse relationships, and custom relationships such as `GenericForeignKey`.