]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/booking/capture.component.html
LP1851306: Port Capture Booking Resource to Angular
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / booking / capture.component.html
1 <eg-string #noResourceString i18n-text text="No resource found with this barcode"></eg-string>
2 <eg-string #captureSuccessString i18n-text text="Resource successfully captured"></eg-string>
3 <eg-string #captureFailureString i18n-text text="Could not capture this resource"></eg-string>
4
5 <eg-staff-banner bannerText="Booking Capture" i18n-bannerText>
6 </eg-staff-banner>
7 <eg-title i18n-prefix i18n-suffix prefix="Booking" suffix="Capture"></eg-title>
8
9 <form [formGroup]="findResource" class="row">
10   <div class="col-md-4">
11     <div class="input-group flex-nowrap">
12       <div class="input-group-prepend">
13         <label class="input-group-text" for="resource-barcode" i18n>Resource barcode</label>
14         <input type="text" id="resource-barcode" class="form-control" formControlName="resourceBarcode">
15       </div>
16     </div>
17   </div>
18 </form>
19
20 <h2 class="text-center mt-2" i18n>Captured today</h2>
21 <eg-reservations-grid #capturedTodayGrid status="capturedToday" persistSuffix="captured"></eg-reservations-grid>
22