Files
mostlymatter/web/templates/admin_console.html
2016-01-24 21:13:30 -06:00

22 строки
398 B
HTML

{{define "admin_console"}}
<!DOCTYPE html>
<html>
{{template "head" . }}
<body>
<script src="/static/js/Chart.min.js"></script>
<div id='admin_controller'></div>
<script>
window.setup_admin_console_page({{ .Props }});
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip();
$('[data-toggle="popover"]').popover();
});
</script>
</body>
</html>
{{end}}