0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-30 11:10:43 +01:00

reordered fields

This commit is contained in:
Dave Cranwell 2014-05-20 14:38:22 +01:00
parent 7b98664cd0
commit 2aaec7c332

View File

@ -79,11 +79,11 @@ class AbstractFormField(Orderable):
panels = [
FieldPanel('label'),
FieldPanel('field_type', classname="formbuilder-type"),
FieldPanel('help_text'),
FieldPanel('required'),
FieldPanel('field_type', classname="formbuilder-type"),
FieldPanel('choices', classname="formbuilder-choices"),
FieldPanel('default_value', classname="formbuilder-default"),
FieldPanel('help_text'),
]
class Meta: