This commit is contained in:
@@ -42,16 +42,7 @@ $warningText = static function (array $warnings): string {
|
||||
<div class="card shadow-sm mb-4">
|
||||
<div class="card-body">
|
||||
<form method="get" action="<?= site_url('administrator/tuition-forecast') ?>" class="row g-3 align-items-end">
|
||||
<div class="col-md-3">
|
||||
<label for="school_year" class="form-label">School Year</label>
|
||||
<select id="school_year" name="school_year" class="form-select">
|
||||
<?php foreach (($schoolYears ?? []) as $schoolYear): ?>
|
||||
<option value="<?= esc($schoolYear) ?>" <?= ($filters['school_year'] ?? '') === $schoolYear ? 'selected' : '' ?>>
|
||||
<?= esc($schoolYear) ?>
|
||||
</option>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
</div>
|
||||
<input type="hidden" name="school_year" value="<?= esc($filters['school_year'] ?? '') ?>">
|
||||
<div class="col-md-2">
|
||||
<label for="semester" class="form-label">Semester Filter</label>
|
||||
<select id="semester" name="semester" class="form-select">
|
||||
|
||||
Reference in New Issue
Block a user