77 lines
2.9 KiB
PHP
77 lines
2.9 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<!-- Page Title -->
|
|
<title>Web Infra Reports IT</title>
|
|
<link rel="shortcut icon" type="image/png" href="/include/favicon-32x32.png">
|
|
<!-- JQuery -->
|
|
<script src="/js/jquery-3.6.1.min.js"></script>
|
|
<!-- Bootstrap -->
|
|
<link rel="stylesheet" href="/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="/css/bootstrap-icons/bootstrap-icons.css">
|
|
<link rel="stylesheet" href="/css/preloader.css">
|
|
<script src="/js/bootstrap.bundle.min.js"></script>
|
|
<!-- Bootstrap-tables -->
|
|
<link rel="stylesheet" href="/css/bootstrap-table.min.css">
|
|
<script src="/js/bootstrap-table.min.js"></script>
|
|
<script src="/js/bootstrap-table-fr-FR.min.js"></script>
|
|
<script src="/js/tableExport.min.js"></script>
|
|
<script src="/js/bootstrap-table-export.min.js"></script>
|
|
<script src="/js/libs/js-xlsx/xlsx.core.min.js"></script>
|
|
</head>
|
|
|
|
<body class="bg-light text-dark">
|
|
<?php include $_SERVER['DOCUMENT_ROOT'] . "/include/all.php"; ?> <!-- Include All -->
|
|
|
|
<!-- HTML -->
|
|
<div class="container-fluid" id="content">
|
|
<div class="row flex-nowrap">
|
|
<!-- Left NAVBAR -->
|
|
<div class="col-auto col-md-2 col-xl-2 px-sm-2 px-0 bg-dark vh-100 position-sticky top-0" style="-ms-flex: 0 0 230px;flex: 0 0 230px;">
|
|
<?php include $_SERVER['DOCUMENT_ROOT'] . "/navbar.html"; ?>
|
|
</div>
|
|
<!-- Display -->
|
|
<div class="col py-3">
|
|
<!-- Page Title -->
|
|
<h1><span class="badge text-bg-secondary font-weight-bold" style="width:100%;">Group Review</span></h1>
|
|
|
|
<!-- Main content -->
|
|
<div class="container-fluid">
|
|
<?php
|
|
$all_groups = Invoke_Infra(" SELECT equipe, Groupe, Tiering, Members FROM Group_Review_SOX ORDER BY equipe, groupe");
|
|
$grouped_by_team = [];
|
|
foreach ($all_groups as $group) {
|
|
$team_name = $group['equipe'];
|
|
if (!isset($grouped_by_team[$team_name])) {
|
|
$grouped_by_team[$team_name] = [];
|
|
}
|
|
$grouped_by_team[$team_name][] = $group;
|
|
}
|
|
foreach ($grouped_by_team as $team_name => $groups_in_team) {
|
|
echo "<h2 class='text-center'>" . htmlspecialchars($team_name) . "</h2>";
|
|
foreach ($groups_in_team as $group_data) {
|
|
echo "<h3>" . htmlspecialchars($group_data['Groupe']) . "</h3>";
|
|
echo "<h4>" . htmlspecialchars($group_data['Tiering']) . "</h4>";
|
|
$formatted_members = str_replace("),", ")<br> - ", htmlspecialchars($group_data['Members']));
|
|
echo " - " . $formatted_members;
|
|
echo "<br><br>";
|
|
}
|
|
echo "<hr>";
|
|
}
|
|
?>
|
|
<div>
|
|
<br>
|
|
</div>
|
|
</div>
|
|
<!-- End of main content -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<script src="/js/switch.js"></script>
|
|
</HTML>
|
|
|