From c7de1c6d6893181f334436fb0634701e2b0cd4a3 Mon Sep 17 00:00:00 2001 From: Kyle Huckins Date: Sun, 8 Dec 2019 05:15:03 +0000 Subject: [PATCH] Admin Course Page Preparation for Course Users - Add a new tab for managing Users associated with the course, in preparation for the User Dialog code. Signed-off-by: Kyle Huckins Changes to be committed: modified: Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-page.component.html modified: Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-page.component.ts --- .../course-reserves/course-page.component.html | 53 ++++++++++++++++++++++ .../local/course-reserves/course-page.component.ts | 3 ++ 2 files changed, 56 insertions(+) diff --git a/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-page.component.html b/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-page.component.html index ec1e4f8db7..0361526439 100644 --- a/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-page.component.html +++ b/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-page.component.html @@ -5,6 +5,8 @@ [bannerIcon]="currentCourse.is_archived() == 't' ? 'lock' : null"> + +
@@ -27,6 +29,8 @@
+ +
@@ -208,6 +212,55 @@ + + + + +
+
+
+
+
+
+ Patron Barcode +
+ + +
+
+
+
+
+
+
+ Role +
+ +
+
+
+
+
+ + +
+
+
+
+ +
+
+
+
diff --git a/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-page.component.ts b/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-page.component.ts index 944bd6480a..37654963e7 100644 --- a/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-page.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-page.component.ts @@ -58,6 +58,9 @@ export class CoursePageComponent implements OnInit { @Input() isModifyingCallNumber: Boolean; @Input() isModifyingLocation: Boolean; + // Users Tab + @Input() userBarcode: String; + @Input() userRoleInput: String; constructor( private auth: AuthService, private course: CourseService, -- 2.11.0