blob: a046478f6004a4919460c7fc7ca8d7799c441acc (
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();
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip();
$('[data-toggle="popover"]').popover();
});
</script>
</body>
</html>
{{end}}
|