| 29 | |
| 30 | |
| 31 | class TeamCreateForm(StarletteForm): |
| 32 | name = StringField(_l("Name"), validators=[DataRequired(), Length(min=1, max=100)]) |
| 33 | submit = SubmitField(_l("Create team")) |
| 34 | |
| 35 | |
| 36 | class TeamGeneralForm(StarletteForm): |
nothing calls this directly
no outgoing calls
no test coverage detected