Files

7 lines
184 B
Python
Raw Permalink Normal View History

2017-11-07 09:23:57 +01:00
from flask.ext.wtf import Form
class GroupedForm(Form):
def group(self, label):
return [field for field in self if field.render_kw and field.render_kw['group'] == label]