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

<div id='error_bar'></div>

<div id='admin_controller' class='container-fluid'></div>

<div id='select_team_modal'></div>

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

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