You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
526 B
23 lines
526 B
"""Form object declaration."""
|
|
|
|
from flask_wtf import FlaskForm
|
|
from wtforms import BooleanField, SubmitField
|
|
|
|
|
|
class AdminUserForm(FlaskForm):
|
|
"""Admin Userform form."""
|
|
|
|
def user_list_form_builder(users):
|
|
class UserListForm(AdminUserForm):
|
|
pass
|
|
|
|
for i, user in enumerate(users):
|
|
setattr(
|
|
UserListForm,
|
|
f"user_{i}",
|
|
BooleanField(label=user.email),
|
|
)
|
|
|
|
return UserListForm()
|
|
|
|
delete = SubmitField("Delete")
|
|
|