Refactor people view to use master3

This commit is contained in:
Lance Edgar 2017-12-04 18:49:52 -06:00
parent c3fb86e391
commit 332fadd42e
2 changed files with 76 additions and 62 deletions

View file

@ -331,6 +331,9 @@ class Form(object):
return fields
def append(self, field):
self.fields.append(field)
def insert_before(self, field, newfield):
self.fields.insert_before(field, newfield)