2013-04-02 13:14:02 -04:00
|
|
|
{{define "head"}}
|
2017-03-03 15:36:06 -05: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 13:30:51 -04:00
|
|
|
|
2017-03-03 15:36:06 -05: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>
|
2017-09-15 22:38:29 -04:00
|
|
|
<script src="{{ pathPrefix }}/static/vendor/moment/moment-timezone-with-data.min.js?v={{ buildVersion }}"></script>
|
2017-03-03 15:36:06 -05:00
|
|
|
<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 05:30:55 -05:00
|
|
|
|
2017-03-03 15:36:06 -05: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>
|
2019-02-07 16:18:09 -05:00
|
|
|
<!-- <script src="{{ pathPrefix }}/static/vendor/js/jquery.hotkeys.js?v={{ buildVersion }}"></script> -->
|
2013-01-17 17:46:43 -05:00
|
|
|
|
2017-12-21 12:58:05 -05:00
|
|
|
<script src="{{ pathPrefix }}/static/js/graph/index.js?v={{ buildVersion }}"></script>
|
2013-01-17 17:46:43 -05:00
|
|
|
|
2013-04-02 13:14:02 -04:00
|
|
|
<script id="graph_template" type="text/x-handlebars-template"></script>
|
2019-02-07 16:18:09 -05:00
|
|
|
|
|
|
|
|
<link type="text/css" rel="stylesheet" href="{{ pathPrefix }}/static/css/graph.css?v={{ buildVersion }}">
|
2013-04-02 13:14:02 -04:00
|
|
|
{{end}}
|
2013-01-24 07:55:32 -05:00
|
|
|
|
2013-04-02 13:14:02 -04:00
|
|
|
{{define "content"}}
|
2015-01-14 11:56:03 -05:00
|
|
|
<div id="graph_container" class="container-fluid">
|
2019-10-21 14:18:47 -04:00
|
|
|
<div class="clearfix">
|
2017-12-21 12:58:05 -05:00
|
|
|
<div class="query-history">
|
2019-10-21 14:18:47 -04:00
|
|
|
<i class="glyphicon glyphicon-unchecked"></i>
|
|
|
|
|
<button type="button" class="search-history" title="search previous queries">Enable query history</button>
|
2017-12-21 12:58:05 -05:00
|
|
|
</div>
|
2020-01-28 08:04:56 -05:00
|
|
|
<button type="button" class="btn btn-link btn-sm new_ui_button" onclick="window.location.pathname='{{ pathPrefix }}/new/graph'">Try experimental React UI</button>
|
2019-10-21 14:18:47 -04:00
|
|
|
</div>
|
2015-01-14 11:56:03 -05:00
|
|
|
</div>
|
2017-12-21 12:58:05 -05:00
|
|
|
|
2015-01-14 11:56:03 -05:00
|
|
|
<div class="container-fluid">
|
|
|
|
|
<div><input class="btn btn-primary" type="submit" value="Add Graph" id="add_graph"></div>
|
2013-01-15 05:30:55 -05:00
|
|
|
</div>
|
2013-04-02 13:14:02 -04:00
|
|
|
{{end}}
|