Commit a3e75e4c by Xavier Ordoquy

Merge pull request #1619 from khamaileon/master

Replace ChoiceField type_label
parents 0c91d8ed 08c45941
...@@ -506,7 +506,7 @@ class SlugField(CharField): ...@@ -506,7 +506,7 @@ class SlugField(CharField):
class ChoiceField(WritableField): class ChoiceField(WritableField):
type_name = 'ChoiceField' type_name = 'ChoiceField'
type_label = 'multiple choice' type_label = 'choice'
form_field_class = forms.ChoiceField form_field_class = forms.ChoiceField
widget = widgets.Select widget = widgets.Select
default_error_messages = { default_error_messages = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment