101 questions
0 votes
0 answers
19 views
What is the correct library for Flask Bootstrap
There is a warning in my PyCharm IDE for the import line: main.py: from flask_bootstrap import Bootstrap5 app = Flask(__name__) Bootstrap5(app) which says: Package containing module '...
0 votes
1 answer
396 views
Flask / Bootstrap not showing image
I have this python flask bootstrap function: # Index page (main page) @app.route('/') def index(): return render_template('test.html') And my run code: if __name__ == '__main__': app.run(...
0 votes
1 answer
58 views
Flask-Bootstrap | WTForms support | Position
How can I position "101010" next to the first label, blue position, using wtf.quick_form()? enter image description here enter image description here **expectation: ** enter image ...
0 votes
0 answers
63 views
Load modules separately in Flask + bootstrap
I am developing a small app with flask and bootstrap. I would like to be able to make different separate modules for the user interface (a menu that will occupy the entire left column, and a central ...
0 votes
1 answer
186 views
Using flask_bootstrap and cant seem to over ride CSS,
I can't seem to get the CSS to override the bootstrap CSS. I have done a very clear change while trying to get it to work by changing the body background color. My working dir End result This is my ...
0 votes
0 answers
303 views
Flask: Bootstrap live search not working through render_kw in SelectField
My Flask web application form has a drop-down box with the list of all countries in the world. However, it gets tedious for the user to scroll and find the appropriate country they're looking for. ...
2 votes
2 answers
767 views
file gets unresolved warning when trying to extend to html file
I'm trying to use flask-bootstrap in my project and I want to extend my html with bootstrap/base.html , but It can't recognise the file. Here is the Python code (only the part that matters): from ...
0 votes
1 answer
188 views
how to convert a logo of Navbar(logo, View('Home', ... from Flask-Nav module to a clickable link
in python code part (as app.py) in the part of menubar we can define our navebar as : # Define navbar with logo # ####################################################### ...