]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/admin/local/survey/survey.component.html
LP2045292 Color contrast for AngularJS patron bills
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / admin / local / survey / survey.component.html
1 <eg-staff-banner bannerText="Survey Configuration" i18n-bannerText>
2 </eg-staff-banner>
3
4 <eg-grid #grid idlClass="asv" [dataSource]="gridDataSource" 
5 [sortable]="true">
6     <eg-grid-toolbar-button label="New Survey" i18n-label [action]="createNew">
7     </eg-grid-toolbar-button>
8     <eg-grid-toolbar-action label="Edit Selected" i18n-label [action]="editSelected">
9     </eg-grid-toolbar-action>
10     <eg-grid-toolbar-action label="Delete Selected" i18n-label 
11     (onClick)="deleteSelected($event)"></eg-grid-toolbar-action>
12     <eg-grid-toolbar-action label="End Survey Now" i18n-label 
13     (onClick)="endSurvey($event)"></eg-grid-toolbar-action>
14 </eg-grid>
15
16 <eg-fm-record-editor 
17     datetimeFieldsList="start_date,end_date"
18     hiddenFieldsList="id"
19     #editDialog 
20     idlClass="asv">
21 </eg-fm-record-editor>
22
23 <eg-string #createString i18n-text text="New Survey Added"></eg-string>
24 <eg-string #createErrString i18n-text text="Failed to Create New Survey">
25     </eg-string>
26 <eg-string #endSurveyFailedString i18n-text 
27     text="Ending Survey failed or was not allowed"></eg-string>
28 <eg-string #endSurveySuccessString i18n-text text="Survey ended">
29     </eg-string>
30 <eg-string #deleteFailedString i18n-text 
31     text="Delete of Survey failed or was not allowed"></eg-string>
32 <eg-string #deleteSuccessString i18n-text text="Delete of Survey succeeded">
33     </eg-string>
34 <eg-string #successString i18n-text text="Update of Survey succeeded">
35     </eg-string>
36 <eg-string #updateFailedString i18n-text text="Update of Survey succeeded">
37     </eg-string>