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

Please support customization of validation messages as described in https://getbootstrap.com/docs/5.1/forms/validation/#custom-styles An alternative way or workaround is with `oninvalid` and `oninput`: term = SearchField('term', validators=[DataRequired(), Length(1, 75)], render_kw={ 'class': 'form-control-lg', 'oninvalid':...

To get CSRF Token handling as outline in https://flask-dropzone.readthedocs.io/en/latest/advanced.html I tried: ```python # enable CSRF protection self.app.config['DROPZONE_ENABLE_CSRF'] = True ``` ```html Dropzone.options.myDropzone.headers = {"X-CSRF-Token": "{{ csrf_token() }}"} Upload Form {{...

form

I am trying to get http://fb4demo.bitplan.com/upload to work with the following code: ```python class UploadForm(FlaskForm): ''' upload form example ''' file = MultipleFileField('File(s) to Upload') submit = SubmitField() ``` ```html...

form

Responsive font sizes [are supported in Bootstrap 4.3](https://getbootstrap.com/docs/4.3/content/typography/#responsive-font-sizes) by changing the $enable-responsive-font-sizes Sass variable to true and recompiling Bootstrap. Is it possible to add support for this as a config...

enhancement
help wanted

Please support horizontal align for rendering of `td` in tables, similar to how table header titles are overridden. Default is align left, as is now. User should be able to...

table

Currently, a table renders an enum such as class MyEnumType(Enum): CREATED = 'Created' STARTED = 'Started' ENDED = 'Ended' used in class MyModel(db.Model): id = db.Column(db.Integer, primary_key=True) state = db.Column(db.Enum(MyEnumType),...

table

After changing the pagination example in http://fb4demo.bitplan.com/pagination ![grafik](https://user-images.githubusercontent.com/1336221/105633408-ab5c0680-5e58-11eb-8a3f-0d083485d940.png) as outlined below things don't work as expected since the pagination uses get and not post so that the PerPage selection is...

pagination

if the form contains a FormField, i.e., another subform the render process is ok, but submit fail

form

Only merge this once this PR https://github.com/wtforms/wtforms/pull/755 is available in a release of WTForms - [ ] Bump the version of WTForms in the requirements/examples.txt

Please upgrade to: - Bootstrap 5.2.0 - Bootswatch 5.2.0 - Bootstrap Icons 1.9.0 - flask 2.2.2 - flask-wtf 1.0.1 - jinja2 3.1.2 - werkzeug 2.2.2

bootstrap5