-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdashboard.php
More file actions
30 lines (26 loc) · 987 Bytes
/
dashboard.php
File metadata and controls
30 lines (26 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="pt-br" dir="ltr">
<head>
<?php
include('inc/config.php');
include('inc/meta-header.php');
?>
<title><?php echo $branch_abrev; ?> - Dashboard</title>
</head>
<body style="height: 100vh; min-height: 45em; position: relative;">
<?php
if (file_exists("inc/analyticstracking.php")){
include_once("inc/analyticstracking.php");
}
?>
<?php include('inc/navbar.php'); ?>
<div class="uk-container uk-margin-large-top" style="position: relative; padding-bottom: 15em;">
<h1>Dashboard</h1>
<iframe src="/app/kibana#/dashboard/<?php echo $dashboardHash; ?>?embed=true&_g=()" height="11500" width="100%"></iframe>
</div>
<div style="position: relative; max-width: initial;">
<?php require 'inc/footer.php'; ?>
</div>
<?php include('inc/offcanvas.php'); ?>
</body>
</html>