mirror of
https://github.com/itflow-org/itflow
synced 2026-03-06 13:54:51 +00:00
Create report landing page from nav menu
This commit is contained in:
@@ -186,7 +186,7 @@
|
|||||||
|
|
||||||
<?php if (lookupUserPermission("module_reporting") >= 1) { ?>
|
<?php if (lookupUserPermission("module_reporting") >= 1) { ?>
|
||||||
<li class="nav-item mt-3">
|
<li class="nav-item mt-3">
|
||||||
<a href="report_income_summary.php" class="nav-link <?php if (basename($_SERVER["PHP_SELF"]) == "report_income_summary.php") { echo "active"; } ?>">
|
<a href="report_overview.php" class="nav-link">
|
||||||
<i class="fas fa-chart-line nav-icon"></i>
|
<i class="fas fa-chart-line nav-icon"></i>
|
||||||
<p>Reports</p>
|
<p>Reports</p>
|
||||||
<i class="fas fa-angle-right nav-icon float-right"></i>
|
<i class="fas fa-angle-right nav-icon float-right"></i>
|
||||||
|
|||||||
20
report_overview.php
Normal file
20
report_overview.php
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
require_once "includes/inc_all_reports.php";
|
||||||
|
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div class="card card-dark">
|
||||||
|
<div class="card-header py-2">
|
||||||
|
<h3 class="card-title mt-2"><i class="fas fa-fw fa-coins mr-2"></i>Reports</h3>
|
||||||
|
</div>
|
||||||
|
<div class="card-body p-0">
|
||||||
|
<form class="p-3">
|
||||||
|
<h3>Access different reports using the menu on the left</h3>
|
||||||
|
<small class="text-muted">In addition to the general reporting permission, you must have read permissions to the reporting area you wish to view (e.g. support/financial).</small>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php require_once "includes/footer.php"; ?>
|
||||||
|
|
||||||
Reference in New Issue
Block a user