summaryrefslogtreecommitdiffstats
path: root/web/templates/admin_console.html
blob: 08c90493eeadc78cada97af19a9b3989e31e42e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{define "admin_console"}}
<!DOCTYPE html>
<html>
{{template "head" . }}
<body>
<script src="/static/js/Chart.min.js"></script>

<div id='admin_controller'></div>

<script>
    window.setup_admin_console_page({{ .Props }});

    $(document).ready(function(){
        $('[data-toggle="tooltip"]').tooltip();
        $('[data-toggle="popover"]').popover();
    });
</script>
</body>
</html>
{{end}}