2013-04-02 10:14:02 -07:00
|
|
|
{{define "head"}}
|
2017-03-03 12:36:06 -08:00
|
|
|
<link type="text/css" rel="stylesheet" href="{{ pathPrefix }}/static/css/graph.css?v={{ buildVersion }}">
|
2013-01-15 02:30:55 -08:00
|
|
|
|
2017-03-03 12:36:06 -08:00
|
|
|
<link type="text/css" rel="stylesheet" href="{{ pathPrefix }}/static/vendor/rickshaw/rickshaw.min.css?v={{ buildVersion }}">
|
|
|
|
<link type="text/css" rel="stylesheet" href="{{ pathPrefix }}/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.css?v={{ buildVersion }}">
|
2013-07-13 10:30:51 -07:00
|
|
|
|
2017-03-03 12:36:06 -08:00
|
|
|
<script src="{{ pathPrefix }}/static/vendor/rickshaw/vendor/d3.v3.js?v={{ buildVersion }}"></script>
|
|
|
|
<script src="{{ pathPrefix }}/static/vendor/rickshaw/vendor/d3.layout.min.js?v={{ buildVersion }}"></script>
|
|
|
|
<script src="{{ pathPrefix }}/static/vendor/rickshaw/rickshaw.min.js?v={{ buildVersion }}"></script>
|
|
|
|
<script src="{{ pathPrefix }}/static/vendor/moment/moment.min.js?v={{ buildVersion }}"></script>
|
|
|
|
<script src="{{ pathPrefix }}/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.js?v={{ buildVersion }}"></script>
|
|
|
|
<script src="{{ pathPrefix }}/static/vendor/bootstrap3-typeahead/bootstrap3-typeahead.min.js?v={{ buildVersion }}"></script>
|
|
|
|
<script src="{{ pathPrefix }}/static/vendor/fuzzy/fuzzy.js?v={{ buildVersion }}"></script>
|
2013-01-15 02:30:55 -08:00
|
|
|
|
2017-03-03 12:36:06 -08:00
|
|
|
<script src="{{ pathPrefix }}/static/vendor/mustache/mustache.min.js?v={{ buildVersion }}"></script>
|
|
|
|
<script src="{{ pathPrefix }}/static/vendor/js/jquery.selection.js?v={{ buildVersion }}"></script>
|
|
|
|
<script src="{{ pathPrefix }}/static/vendor/js/jquery.hotkeys.js?v={{ buildVersion }}"></script>
|
2013-01-17 14:46:43 -08:00
|
|
|
|
2017-03-03 12:36:06 -08:00
|
|
|
<script src="{{ pathPrefix }}/static/js/graph.js?v={{ buildVersion }}"></script>
|
2013-01-17 14:46:43 -08:00
|
|
|
|
2013-04-02 10:14:02 -07:00
|
|
|
<script id="graph_template" type="text/x-handlebars-template"></script>
|
|
|
|
{{end}}
|
2013-01-24 04:55:32 -08:00
|
|
|
|
2013-04-02 10:14:02 -07:00
|
|
|
{{define "content"}}
|
2015-01-14 08:56:03 -08:00
|
|
|
<div id="graph_container" class="container-fluid">
|
|
|
|
</div>
|
|
|
|
<div class="container-fluid">
|
|
|
|
<div><input class="btn btn-primary" type="submit" value="Add Graph" id="add_graph"></div>
|
2013-01-15 02:30:55 -08:00
|
|
|
</div>
|
2013-04-02 10:14:02 -07:00
|
|
|
{{end}}
|