This commit is contained in:
@@ -5,16 +5,6 @@
|
||||
<h2 class="text-center mt-4 mb-3">Reimbursed Expenses</h2>
|
||||
|
||||
<form method="get" action="<?= base_url('reimbursements') ?>" class="row g-3 mb-4">
|
||||
<!-- Semester -->
|
||||
<div class="col-md-2">
|
||||
<label class="form-label">Semester</label>
|
||||
<select name="semester" class="form-select">
|
||||
<option value="">All</option>
|
||||
<option value="Fall" <?= request()->getGet('semester') === 'Fall' ? 'selected' : '' ?>>Fall</option>
|
||||
<option value="Spring" <?= request()->getGet('semester') === 'Spring' ? 'selected' : '' ?>>Spring</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<!-- Status (from reimbursements.status) -->
|
||||
<div class="col-md-2">
|
||||
<label class="form-label">Status</label>
|
||||
@@ -28,19 +18,6 @@
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<!-- School Year -->
|
||||
<div class="col-md-2">
|
||||
<label class="form-label">School Year</label>
|
||||
<select name="school_year" class="form-select">
|
||||
<option value="">All</option>
|
||||
<?php foreach ($schoolYears as $sy): ?>
|
||||
<option value="<?= esc($sy) ?>" <?= request()->getGet('school_year') == $sy ? 'selected' : '' ?>>
|
||||
<?= esc($sy) ?>
|
||||
</option>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<!-- User -->
|
||||
<div class="col-md-3">
|
||||
<label class="form-label">Reimbursed To</label>
|
||||
|
||||
Reference in New Issue
Block a user