Document ChoiceField blank_display_value parameter

This commit is contained in:
Ian Foote 2014-05-20 14:55:00 +01:00
parent 6c108c459d
commit 1e7b5fd2c0

View File

@ -184,7 +184,9 @@ Corresponds to `django.db.models.fields.SlugField`.
## ChoiceField
A field that can accept a value out of a limited set of choices.
A field that can accept a value out of a limited set of choices. Optionally takes a `blank_display_value` parameter that customizes the display value of an empty choice.
**Signature:** `ChoiceField(choices=(), blank_display_value=None)`
## EmailField