summaryrefslogtreecommitdiffstats
path: root/web/templates/admin_console.html
blob: 574caf730ff866159553314eb8665259976983c5 (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
{{define "admin_console"}}
<!DOCTYPE html>
<html>
{{template "head" . }}
<body>

<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}}