mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
26 lines
486 B
HTML
26 lines
486 B
HTML
|
|
{{define "admin_console"}}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
{{template "head" . }}
|
|
<body>
|
|
<script src="/static/js/Chart.min.js"></script>
|
|
|
|
<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}}
|