Skip to content

Static assets not using Flask "url_for" convention #75

@arin-gupta06

Description

@arin-gupta06

🎨 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='...')

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't workingenhancementNew feature or requesthelp wantedExtra attention is needed

    Type

    No fields configured for Bug.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions