0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-12-01 11:41:20 +01:00

Fix AbstractFormField to not lose the sort_order ordering

This commit is contained in:
Matt Westcott 2014-05-02 16:23:36 +01:00
parent d344dc39a1
commit af475d7566

View File

@ -82,6 +82,7 @@ class AbstractFormField(Orderable):
class Meta:
abstract = True
ordering = ['sort_order']
FORM_MODEL_CLASSES = []