]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/booking/capture.component.html
LP 2061136 follow-up: ng lint --fix
[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         <label class="form-label input-group-text" for="resource-barcode" i18n>Resource barcode</label>
13         <input type="text" id="resource-barcode" class="form-control" formControlName="resourceBarcode">
14     </div>
15   </div>
16 </form>
17
18 <h2 class="text-center mt-2" i18n>Captured today</h2>
19 <eg-reservations-grid #capturedTodayGrid status="capturedToday" persistSuffix="captured"></eg-reservations-grid>
20