prometheus/web/templates/graph.html

28 lines
1.1 KiB
HTML
Raw Normal View History

{{define "head"}}
<script src="/static/vendor/jqueryui/jquery-ui.min.js"></script>
<link rel="stylesheet" href="/static/vendor/jqueryui/themes/base/jquery-ui.css" />
<link type="text/css" rel="stylesheet" href="/static/css/graph.css">
2013-01-15 10:30:55 +00:00
<link type="text/css" rel="stylesheet" href="/static/vendor/rickshaw/rickshaw.min.css">
<script src="/static/vendor/rickshaw/vendor/d3.min.js"></script>
<script src="/static/vendor/rickshaw/vendor/d3.layout.min.js"></script>
<script src="/static/vendor/rickshaw/rickshaw.min.js"></script>
2015-01-12 13:18:28 +00:00
<script src="/static/vendor/bootstrap-datetimepicker/bootstrap-datetimepicker.js"></script>
2013-01-15 10:30:55 +00:00
<script src="/static/vendor/js/handlebars.js"></script>
<script src="/static/vendor/js/jquery.selection.js"></script>
<script src="/static/vendor/js/jquery.hotkeys.js"></script>
<script src="/static/js/graph.js"></script>
<script id="graph_template" type="text/x-handlebars-template"></script>
{{end}}
{{define "content"}}
2014-12-25 15:27:35 +00:00
<div id="graph_container" class="container_fluid">
2013-01-15 10:30:55 +00:00
</div>
<div><input class="btn btn-primary" type="submit" value="Add Graph" id="add_graph"></div>
{{end}}