diff options
Diffstat (limited to 'web/templates/admin_console.html')
-rw-r--r-- | web/templates/admin_console.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/web/templates/admin_console.html b/web/templates/admin_console.html new file mode 100644 index 000000000..1444d9b17 --- /dev/null +++ b/web/templates/admin_console.html @@ -0,0 +1,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}} |