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

Centos6.8 File "/usr/local/lib64/python3.6/site-packages/flask/templating.py", line 117, in _render rv = template.render(context) File "/usr/local/lib/python3.6/site-packages/jinja2/asyncsupport.py", line 76, in render return original_render(self, *args, **kwargs) File "/usr/local/lib/python3.6/site-packages/jinja2/environment.py", line 1008, in render return self.environment.handle_exception(exc_info, True) File...

I have following form definition: ``` class Form(FlaskForm): text = StringField(description='Some visible text') unique = BooleanField(description="Won't be rendered") ``` And below I'm presenting how does html rendered by following template...

Setting enctype="multipart/form-data" for MultipleFileField

For `FileField` as the _enctype_ is handled , enctype is not handled directly for MultipleFileField. Though it could be handle manually while calling quick_form and passing `enctype="multipart/form-data"`.

Add initial support for bootstrap v4.0.0-alpha.6. This shouldn't got to master yet, but it might be good to create a bootstrap4 branch.

Currently form fields are missing id, name, and value. For name, this means that the fields and their data are not submitted. For value, on pages where submits send the...

https://blog.getbootstrap.com/2018/12/13/bootstrap-3-4-0/ There is any way to chose the Bootstrap version in config?

Thanks for all your great work When can we expect bootstrap 4 support for this package?

I read in the docs: `enctype attribute. If None, will automatically be set to multipart/form-data if a FileField is present in the form.` However, in an application I work on,...