blob: 1444d9b17923153ce5269809a57190bf46f56071 (
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"></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}}
|