I have a problem. Flask application respond a 404 not found at this .css url.
How can I write this jinja code in javascript file ?
{{ url_for('static', filename='assets/css/themes/') }}
Javascript file
var setColor = function (color) {
var color_ = (App.isRTL() ? color + '-rtl' : color);
$('#style_color').attr("href", "assets/css/themes/" + color_ + ".css");
}