How can you use the "url_for" directive in Flask to correctly set things up so a html page that uses Bootstrap and RGraph works ?
Say my html page looks like this (partial snippet) :-
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href="scripts/bootstrap/dist/css/bootstrap.css" rel="stylesheet">
<title>HP Labs: Single Pane Of Glass (Alpha)</title>
<script src="scripts/RGraph/libraries/RGraph.common.core.js" ></script>
<script src="scripts/RGraph/libraries/RGraph.line.js" ></script>
<script src="scripts/RGraph/libraries/RGraph.common.effects.js" ></script>
<script src="scripts/RGraph/libraries/RGraph.line.js" ></script>
......
</html>
Here's what I've done/want to do :-
Created a "templates" directory alongside my Flask module and placed this html file in it.
Created a "static" directory alongside my Flask module but am unsure where and how many "url_for" type statements to use and where they should go. So currently the "scripts" directory is a sub-directory in the "templates" directory (I know this is incorrect).
I'd like to be able to reference all the Bootstrap and RGraph js and css correctly (right now seeing lots of 404s).
Can anyone direct me to correctly configure Flask (running the dev server) to do this ? Right now the js and css doesn't work.
Thanks !