Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

url_for: how to look into another folder other than static

I have a file test.css in a folder called css. I want to create url for this file. I know that I can use url_for like

url_for('static', filename="test.css")

to create url like static/test.css but I am not able to use like

url_for('css', filename="test.css")

to create the url that I am interested in css/test.css

How can I do this?

like image 910
ganesshkumar Avatar asked Aug 15 '13 09:08

ganesshkumar


1 Answers

static just endpoint, see route and view. So you can create own endpoints:

app.add_url_rule('/css/<path:filename>', endpoint='css',
                 view_func=app.send_static_file)
like image 117
tbicr Avatar answered Sep 22 '22 15:09

tbicr