🎨 Static assets not using Flask "url_for" convention
Description
Static files are referenced using relative paths instead of Flask’s standard method.
Issue
Example:
../static/css/style.css
Instead of:
{{ url_for('static', filename='css/style.css') }}
Impact
- Assets may fail to load depending on routing or deployment setup
Suggested Fix
Replace all static paths with:
url_for('static', filename='...')
🎨 Static assets not using Flask "url_for" convention
Description
Static files are referenced using relative paths instead of Flask’s standard method.
Issue
Example:
../static/css/style.css
Instead of:
{{ url_for('static', filename='css/style.css') }}
Impact
Suggested Fix
Replace all static paths with:
url_for('static', filename='...')