fix is_active student flag logic and make moving with enrollment status
Deploy to Shared Hosting / Shared hosting deploy (push) Failing after 47s
Tests / PHPUnit (push) Successful in 1m16s

This commit is contained in:
root
2026-08-20 03:11:37 -04:00
parent 6f722795c5
commit 0a31aa1393
20 changed files with 588 additions and 489 deletions
+7 -3
View File
@@ -525,7 +525,7 @@
<!-- Statistics Start -->
<div class="container-xxl py-2 content-section">
<div class="container">
<div class="home-stats" data-dashboard-endpoint="<?= site_url('api/administrator/dashboard') ?>">
<div class="home-stats" data-dashboard-endpoint="/api/administrator/dashboard">
<h1 class="d-flex justify-content-center p-md-1">Active Participants</h1>
<br>
<div class="stats-row">
@@ -734,11 +734,15 @@
window.addEventListener('load', function() {
// Hide the spinner
const spinner = document.getElementById('spinner');
spinner.style.opacity = '0';
if (spinner) {
spinner.style.opacity = '0';
}
// Remove spinner from DOM after fade out
setTimeout(function() {
spinner.style.display = 'none';
if (spinner) {
spinner.style.display = 'none';
}
// Force show all content
document.querySelectorAll('.content-section, h1, h2, h3, h4, h5, h6, p').forEach(function(el) {