|
@@ -22,6 +22,7 @@
|
|
.filter-container>div:not(:last-child) {
|
|
.filter-container>div:not(:last-child) {
|
|
margin-right: 15px;
|
|
margin-right: 15px;
|
|
}
|
|
}
|
|
|
|
+
|
|
.select2-container {
|
|
.select2-container {
|
|
width: 100% !important;
|
|
width: 100% !important;
|
|
}
|
|
}
|
|
@@ -87,7 +88,7 @@
|
|
<select multiple class="form-control form-control-sm mr-2" name="patients[]" v-model="filters.patients">
|
|
<select multiple class="form-control form-control-sm mr-2" name="patients[]" v-model="filters.patients">
|
|
<option value="">All Patients</option>
|
|
<option value="">All Patients</option>
|
|
@foreach($allPatientsWithNotes as $notePatient)
|
|
@foreach($allPatientsWithNotes as $notePatient)
|
|
- <option value="{{ $notePatient->id }}">{{ $notePatient->displayName() }}</option>
|
|
|
|
|
|
+ <option value="{{ $notePatient->id }}">{{ $notePatient->displayName() }}</option>
|
|
@endforeach
|
|
@endforeach
|
|
</select>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
@@ -99,6 +100,9 @@
|
|
<select class="form-control form-control-sm mr-2" name="status" v-model="filters.status">
|
|
<select class="form-control form-control-sm mr-2" name="status" v-model="filters.status">
|
|
<option value="">All Notes</option>
|
|
<option value="">All Notes</option>
|
|
<option value="CANCELLED">Cancelled</option>
|
|
<option value="CANCELLED">Cancelled</option>
|
|
|
|
+ <option value="NOT_YET_SIGNED">Notes not yet signed</option>
|
|
|
|
+ <option value="NOT_YET_SIGNED_BUT_ALLY_SIGNED">Notes not yet signed (but ally signed)</option>
|
|
|
|
+ <option value="WITHOUT_BILLS">Without Bills</option>
|
|
</select>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|