7 lines
184 B
Python
7 lines
184 B
Python
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]
|
|
|