mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 23:54:05 -08:00
28 lines
1.1 KiB
HTML
28 lines
1.1 KiB
HTML
{{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">
|
|
|
|
<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>
|
|
<script src="/static/vendor/bootstrap-datetimepicker/bootstrap-datetimepicker.js"></script>
|
|
|
|
<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"}}
|
|
<div id="graph_container" class="container_fluid">
|
|
</div>
|
|
<div><input class="btn btn-primary" type="submit" value="Add Graph" id="add_graph"></div>
|
|
{{end}}
|