bootstrap-flask icon indicating copy to clipboard operation
bootstrap-flask copied to clipboard

Bootstrap 4 & 5 helper for your Flask projects.

Results 61 bootstrap-flask issues
Sort by recently updated
recently updated
newest added

When you render a form with `form_type="inline"` the form labels get the class `visually-hidden` assigned to them. I was wondering what the rationale behind this is? Is this a best...

A question for usage of kwargs, how to add a key without a value such as https://www.w3schools.com/tags/att_input_autofocus.asp Will add example usage to the example application when I have the answer.

docs

I have a form with submit = SubmitField('Search') and a template with {{ render_field(form.submit) }} which renders to but I want the [search icon](https://icons.getbootstrap.com/icons/search/) on the submit button instead of...

docs

Where can we add the following links for validation of the examples? Bootstrap 4: - https://validator.w3.org/nu/?doc=http%3A%2F%2F173.212.198.217%2F - https://validator.w3.org/nu/?doc=http%3A%2F%2F173.212.198.217%2Fform - https://validator.w3.org/nu/?doc=http%3A%2F%2F173.212.198.217%2Fnav - https://validator.w3.org/nu/?doc=http%3A%2F%2F173.212.198.217%2Fpagination - https://validator.w3.org/nu/?doc=http%3A%2F%2F173.212.198.217%2Fflash - https://validator.w3.org/nu/?doc=http%3A%2F%2F173.212.198.217%2Ftable - https://validator.w3.org/nu/?doc=http%3A%2F%2F173.212.198.217%2Ficon Bootstrap 5:...

docs

Can I only rend the Input , don't include the labe when i rend-field? Sometimes I want to design the label by myself?

can bootstrap-flask support DateRangeFiled?

how to remove this wrap (mb-3): ![Снимок экрана от 2022-05-24 17-57-20](https://user-images.githubusercontent.com/1178208/170067143-9aacc10d-c436-4184-8ef6-bb939245e772.png) ```python class AuthForm(FlaskForm): hash = StringField("", validators=[Length(8, 256)], render_kw={"class": "me-2"}) submit = SubmitField("Auth", render_kw={"class": "btn-outline-success"}) ``` ```html {{render_form(auth_form(), extra_classes="d-flex")}}...