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

Ready-to-use Twitter-bootstrap for use in Flask.

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

Hello, I'm try to render a simple form with flask-wtf and quick_forms. This is my form: `class SignupForm(FlaskForm): username = StringField('Username', [validators.Length(min=4, max=25)]) accept_tos = BooleanField('I accept the TOS', [validators.DataRequired()])...

Put flask-nav element to the right of the navbar. Here is an example: ```python @nav.navigation() def main_nav(): navbar = Navbar('Blog') navbar.items.append(View('Home', 'main.index')) if current_user.is_authenticated: usergrp = [] usergrp.append(current_user.email) if current_user.has_role('admin'):...

errors for RadioField are not displayed

Is it possible to have a RadioField render as inline with a label when using quick_form to render the rest of the form as "basic"?

I think that this library is very useful and I've used it in a lot of my flask projects. I've one major issue with the dependencies that it kicks in....

Otherwise this error is thrown: `werkzeug.routing.BuildError: Could not build url for endpoint 'main.static' with values ['filename']. Did you mean 'static' instead?`

Handling separator in Navbar so that it creates a navbar-right list of elements

I might be missing something here, but it looks like `field.errors` is not checked in `form_field` macro for `checkbox` type and the error message is not being displayed. I was...

I am triggering an inline validator, but i can't make it work when using BooleanField or RadioField. Only works with SelectField, StringField or IntegerField

flask-nav extermal link can set other attributes. https://github.com/mbr/flask-nav/pull/11