]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/admin/server/floating-group/floating-group.component.html
LP1915464 follow-up: use spaces, not tabs; remove extra comma
[working/Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / admin / server / floating-group / floating-group.component.html
1 <eg-staff-banner bannerText="Floating Group Administration" i18n-bannerText>
2 </eg-staff-banner>
3
4 <eg-string #createString i18n-text text="New Floating Group Added"></eg-string>
5 <eg-string #createErrString i18n-text text="Failed to Create New Floating Group">
6 </eg-string>
7 <eg-string #deleteFailedString i18n-text 
8   text="Delete of Floating Group failed or was not allowed"></eg-string>
9 <eg-string #deleteSuccessString i18n-text 
10   text="Delete of Floating Group succeeded"></eg-string>
11
12 <eg-confirm-dialog #delConfirm
13   i18n-dialogTitle i18n-dialogBody
14   dialogTitle="Delete?"
15   dialogBody="Delete floating group?">
16 </eg-confirm-dialog>
17
18 <eg-grid #grid idlClass="cfg" [dataSource]="gridDataSource" [sortable]="true"
19   (onRowActivate)="showEditDialog($event)">
20   <eg-grid-toolbar-button
21     label="New Floating Group" i18n-label (onClick)="createNew()">
22   </eg-grid-toolbar-button>
23   <eg-grid-toolbar-action label="Edit Selected" i18n-label [action]="editSelected">
24   </eg-grid-toolbar-action>
25   <eg-grid-toolbar-action label="Delete Selected" i18n-label
26     [action]="deleteSelected"></eg-grid-toolbar-action>
27 </eg-grid>
28 <eg-fm-record-editor #editDialog idlClass="cfg">
29 </eg-fm-record-editor>