-
Notifications
You must be signed in to change notification settings - Fork 722
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
description
property isn't rendered for BooleanField
#197
Comments
And workaround if someone needed: class Form(FlaskForm):
text = StringField(description='Some visible text')
unique = BooleanField(label='Unique - <small>Bow this "description" is visible</small>') |
greyli
added a commit
to helloflask/bootstrap-flask
that referenced
this issue
Apr 21, 2020
smartdev0712
pushed a commit
to smartdev0712/jinja-bootstrap-flask
that referenced
this issue
Apr 21, 2022
VV-YY
added a commit
to VV-YY/bootstrap_flask
that referenced
this issue
Feb 20, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have following form definition:
And below I'm presenting how does html rendered by following template loooks like:
Here's how it looks like live:
Why isn't
description
forBooleanField
rendered?I'm using
Flask-Bootstrap4
The text was updated successfully, but these errors were encountered: