From c5a56626ecf259017522967ecc4c007ca0c91dbf Mon Sep 17 00:00:00 2001 From: Keith Becker Date: Tue, 27 Apr 2021 10:41:44 -0600 Subject: [PATCH 01/63] showing add to course dialog --- src/components/Dialogs/AddStudentDialog.vue | 74 +++++++++++++++++++ .../Training/TrainingAttendance.vue | 55 +------------- 2 files changed, 77 insertions(+), 52 deletions(-) create mode 100644 src/components/Dialogs/AddStudentDialog.vue diff --git a/src/components/Dialogs/AddStudentDialog.vue b/src/components/Dialogs/AddStudentDialog.vue new file mode 100644 index 0000000..9bcb880 --- /dev/null +++ b/src/components/Dialogs/AddStudentDialog.vue @@ -0,0 +1,74 @@ + + + diff --git a/src/components/Training/TrainingAttendance.vue b/src/components/Training/TrainingAttendance.vue index 734f613..e66c148 100644 --- a/src/components/Training/TrainingAttendance.vue +++ b/src/components/Training/TrainingAttendance.vue @@ -114,62 +114,14 @@ - - - - Add new student to {{ currentTrainingCourse.name }} - + - - - - - - - Cancel - - - Add Student - - - - + -- GitLab From 8266388c04c4b6f279bfa625fca97a42ca857eee Mon Sep 17 00:00:00 2001 From: Keith Becker Date: Tue, 27 Apr 2021 11:32:41 -0600 Subject: [PATCH 04/63] Add Student Dialog looks good --- src/components/Dialogs/AddStudentDialog.vue | 38 +++++---------- .../DialogComponents/CourseNameDate.vue | 43 +++++++++++++++++ .../DialogComponents/UserSelectForCourse.vue | 47 +++++++++++++------ .../Dialogs/vue-component-boiler-plate.vue | 22 +++++++++ .../Training/TrainingAttendance.vue | 7 +-- 5 files changed, 113 insertions(+), 44 deletions(-) create mode 100644 src/components/Dialogs/DialogComponents/CourseNameDate.vue create mode 100644 src/components/Dialogs/vue-component-boiler-plate.vue diff --git a/src/components/Dialogs/AddStudentDialog.vue b/src/components/Dialogs/AddStudentDialog.vue index 35cf0c9..77b80a0 100644 --- a/src/components/Dialogs/AddStudentDialog.vue +++ b/src/components/Dialogs/AddStudentDialog.vue @@ -1,29 +1,9 @@