mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2026-06-21 14:49:59 -04:00
- Created skeleton templates for events, notifications, plugins, presence, report, settings, and workflows to enhance loading states. - Implemented structured skeletons for tab details, tab events, maintenance backup, database tools, logging, multi-edit, presence, sessions, and system info. - Each template includes shimmer effects for loading indicators, improving user experience during data fetching.
21 lines
552 B
PHP
Executable File
21 lines
552 B
PHP
Executable File
<?php
|
|
|
|
require 'php/templates/header.php';
|
|
?>
|
|
<!-- ----------------------------------------------------------------------- -->
|
|
|
|
|
|
<!-- Page ------------------------------------------------------------------ -->
|
|
<div class="content-wrapper" id="wf-content-wrapper">
|
|
<?php require 'php/templates/skel_workflows.php'; ?>
|
|
<span class="helpIcon"> <a target="_blank" href="https://docs.netalertx.com/WORKFLOWS"><i class="fa fa-circle-question"></i></a></span>
|
|
<?php
|
|
require 'workflowsCore.php';
|
|
?>
|
|
|
|
|
|
</div>
|
|
|
|
<?php
|
|
require 'php/templates/footer.php';
|
|
?>
|