Files
mattermost/web/templates/admin_console.html
2015-09-10 15:44:14 -07:00

25 lines
406 B
HTML

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