diff --git a/app/instructionalSupport/instructionalSupport.html b/app/instructionalSupport/instructionalSupport.html
index 49f8ac4ea..359d6dd8d 100644
--- a/app/instructionalSupport/instructionalSupport.html
+++ b/app/instructionalSupport/instructionalSupport.html
@@ -28,8 +28,16 @@
-
+
+
+
+
+
+
+
+
+
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/confirmEligible/confirmEligible.css b/app/instructionalSupport/studentSupportCallForm/directives/confirmEligible/confirmEligible.css
new file mode 100644
index 000000000..e69de29bb
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/confirmEligible/confirmEligible.html b/app/instructionalSupport/studentSupportCallForm/directives/confirmEligible/confirmEligible.html
new file mode 100644
index 000000000..e69de29bb
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/confirmEligible/confirmEligible.js b/app/instructionalSupport/studentSupportCallForm/directives/confirmEligible/confirmEligible.js
new file mode 100644
index 000000000..c0239ea93
--- /dev/null
+++ b/app/instructionalSupport/studentSupportCallForm/directives/confirmEligible/confirmEligible.js
@@ -0,0 +1,22 @@
+summaryApp.directive("confirmEligible", this.confirmEligible = function () {
+ return {
+ restrict: 'E',
+ templateUrl: 'confirmEligible.html',
+ replace: true,
+ scope: {
+ state: '<'
+ },
+ link: function (scope, element, attrs) {
+ scope.props = {};
+ scope.mapStateToProps(scope.state);
+
+ $rootScope.$on('supportStaffFormStateChanged', function (event, data) {
+ scope.mapStateToProps(data);
+ });
+
+ scope.mapStateToProps = function(state) {
+ return state;
+ };
+ }
+ };
+});
\ No newline at end of file
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/crnAvailable/crnAvailable.css b/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/crnAvailable/crnAvailable.css
new file mode 100644
index 000000000..e69de29bb
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/crnAvailable/crnAvailable.html b/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/crnAvailable/crnAvailable.html
new file mode 100644
index 000000000..e69de29bb
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/crnAvailable/crnAvailable.js b/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/crnAvailable/crnAvailable.js
new file mode 100644
index 000000000..cc3ca2c0d
--- /dev/null
+++ b/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/crnAvailable/crnAvailable.js
@@ -0,0 +1,22 @@
+summaryApp.directive("crnAvailable", this.crnAvailable = function () {
+ return {
+ restrict: 'E',
+ templateUrl: 'crnAvailable.html',
+ replace: true,
+ scope: {
+ state: '<'
+ },
+ link: function (scope, element, attrs) {
+ scope.props = {};
+ scope.mapStateToProps(scope.state);
+
+ $rootScope.$on('supportStaffFormStateChanged', function (event, data) {
+ scope.mapStateToProps(data);
+ });
+
+ scope.mapStateToProps = function(state) {
+ return state;
+ };
+ }
+ };
+});
\ No newline at end of file
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/gridAvailable/gridAvailable.css b/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/gridAvailable/gridAvailable.css
new file mode 100644
index 000000000..e69de29bb
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/gridAvailable/gridAvailable.html b/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/gridAvailable/gridAvailable.html
new file mode 100644
index 000000000..e69de29bb
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/gridAvailable/gridAvailable.js b/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/gridAvailable/gridAvailable.js
new file mode 100644
index 000000000..a4bc1d88a
--- /dev/null
+++ b/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/gridAvailable/gridAvailable.js
@@ -0,0 +1,22 @@
+summaryApp.directive("gridAvailable", this.gridAvailable = function () {
+ return {
+ restrict: 'E',
+ templateUrl: 'gridAvailable.html',
+ replace: true,
+ scope: {
+ state: '<'
+ },
+ link: function (scope, element, attrs) {
+ scope.props = {};
+ scope.mapStateToProps(scope.state);
+
+ $rootScope.$on('supportStaffFormStateChanged', function (event, data) {
+ scope.mapStateToProps(data);
+ });
+
+ scope.mapStateToProps = function(state) {
+ return state;
+ };
+ }
+ };
+});
\ No newline at end of file
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/studentAvailabilities.css b/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/studentAvailabilities.css
new file mode 100644
index 000000000..e69de29bb
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/studentAvailabilities.html b/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/studentAvailabilities.html
new file mode 100644
index 000000000..e69de29bb
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/studentAvailabilities.js b/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/studentAvailabilities.js
new file mode 100644
index 000000000..a84359627
--- /dev/null
+++ b/app/instructionalSupport/studentSupportCallForm/directives/studentAvailabilities/studentAvailabilities.js
@@ -0,0 +1,22 @@
+summaryApp.directive("studentAvailabilities", this.studentAvailabilities = function () {
+ return {
+ restrict: 'E',
+ templateUrl: 'studentAvailabilities.html',
+ replace: true,
+ scope: {
+ state: '<'
+ },
+ link: function (scope, element, attrs) {
+ scope.props = {};
+ scope.mapStateToProps(scope.state);
+
+ $rootScope.$on('supportStaffFormStateChanged', function (event, data) {
+ scope.mapStateToProps(data);
+ });
+
+ scope.mapStateToProps = function(state) {
+ return state;
+ };
+ }
+ };
+});
\ No newline at end of file
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/studentComments/studentComments.css b/app/instructionalSupport/studentSupportCallForm/directives/studentComments/studentComments.css
new file mode 100644
index 000000000..ae1d6e6a7
--- /dev/null
+++ b/app/instructionalSupport/studentSupportCallForm/directives/studentComments/studentComments.css
@@ -0,0 +1,3 @@
+.student-comments {
+
+}
\ No newline at end of file
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/studentComments/studentComments.html b/app/instructionalSupport/studentSupportCallForm/directives/studentComments/studentComments.html
new file mode 100644
index 000000000..41cfe54fc
--- /dev/null
+++ b/app/instructionalSupport/studentSupportCallForm/directives/studentComments/studentComments.html
@@ -0,0 +1,8 @@
+
\ No newline at end of file
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/studentComments/studentComments.js b/app/instructionalSupport/studentSupportCallForm/directives/studentComments/studentComments.js
new file mode 100644
index 000000000..4292b20ff
--- /dev/null
+++ b/app/instructionalSupport/studentSupportCallForm/directives/studentComments/studentComments.js
@@ -0,0 +1,22 @@
+summaryApp.directive("studentComments", this.studentComments = function () {
+ return {
+ restrict: 'E',
+ templateUrl: 'studentComments.html',
+ replace: true,
+ scope: {
+ state: '<'
+ },
+ link: function (scope, element, attrs) {
+ scope.props = {};
+ scope.mapStateToProps(scope.state);
+
+ $rootScope.$on('supportStaffFormStateChanged', function (event, data) {
+ scope.mapStateToProps(data);
+ });
+
+ scope.mapStateToProps = function(state) {
+ return state;
+ };
+ }
+ };
+});
\ No newline at end of file
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/studentFormReview/studentFormReview.css b/app/instructionalSupport/studentSupportCallForm/directives/studentFormReview/studentFormReview.css
new file mode 100644
index 000000000..e69de29bb
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/studentFormReview/studentFormReview.html b/app/instructionalSupport/studentSupportCallForm/directives/studentFormReview/studentFormReview.html
new file mode 100644
index 000000000..e69de29bb
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/studentFormReview/studentFormReview.js b/app/instructionalSupport/studentSupportCallForm/directives/studentFormReview/studentFormReview.js
new file mode 100644
index 000000000..aaf13c4c2
--- /dev/null
+++ b/app/instructionalSupport/studentSupportCallForm/directives/studentFormReview/studentFormReview.js
@@ -0,0 +1,22 @@
+summaryApp.directive("studentFormReview", this.studentFormReview = function () {
+ return {
+ restrict: 'E',
+ templateUrl: 'studentFormReview.html',
+ replace: true,
+ scope: {
+ state: '<'
+ },
+ link: function (scope, element, attrs) {
+ scope.props = {};
+ scope.mapStateToProps(scope.state);
+
+ $rootScope.$on('supportStaffFormStateChanged', function (event, data) {
+ scope.mapStateToProps(data);
+ });
+
+ scope.mapStateToProps = function(state) {
+ return state;
+ };
+ }
+ };
+});
\ No newline at end of file
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/studentPreferences/studentPreferences.css b/app/instructionalSupport/studentSupportCallForm/directives/studentPreferences/studentPreferences.css
new file mode 100644
index 000000000..e69de29bb
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/studentPreferences/studentPreferences.html b/app/instructionalSupport/studentSupportCallForm/directives/studentPreferences/studentPreferences.html
new file mode 100644
index 000000000..e69de29bb
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/studentPreferences/studentPreferences.js b/app/instructionalSupport/studentSupportCallForm/directives/studentPreferences/studentPreferences.js
new file mode 100644
index 000000000..5c13b8c94
--- /dev/null
+++ b/app/instructionalSupport/studentSupportCallForm/directives/studentPreferences/studentPreferences.js
@@ -0,0 +1,22 @@
+summaryApp.directive("studentPreferences", this.studentPreferences = function () {
+ return {
+ restrict: 'E',
+ templateUrl: 'studentPreferences.html',
+ replace: true,
+ scope: {
+ state: '<'
+ },
+ link: function (scope, element, attrs) {
+ scope.props = {};
+ scope.mapStateToProps(scope.state);
+
+ $rootScope.$on('supportStaffFormStateChanged', function (event, data) {
+ scope.mapStateToProps(data);
+ });
+
+ scope.mapStateToProps = function(state) {
+ return state;
+ };
+ }
+ };
+});
\ No newline at end of file
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/teachingQualifications/teachingQualifications.css b/app/instructionalSupport/studentSupportCallForm/directives/teachingQualifications/teachingQualifications.css
new file mode 100644
index 000000000..e69de29bb
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/teachingQualifications/teachingQualifications.html b/app/instructionalSupport/studentSupportCallForm/directives/teachingQualifications/teachingQualifications.html
new file mode 100644
index 000000000..e69de29bb
diff --git a/app/instructionalSupport/studentSupportCallForm/directives/teachingQualifications/teachingQualifications.js b/app/instructionalSupport/studentSupportCallForm/directives/teachingQualifications/teachingQualifications.js
new file mode 100644
index 000000000..1a7d00ae3
--- /dev/null
+++ b/app/instructionalSupport/studentSupportCallForm/directives/teachingQualifications/teachingQualifications.js
@@ -0,0 +1,22 @@
+summaryApp.directive("teachingQualifications", this.teachingQualifications = function () {
+ return {
+ restrict: 'E',
+ templateUrl: 'teachingQualifications.html',
+ replace: true,
+ scope: {
+ state: '<'
+ },
+ link: function (scope, element, attrs) {
+ scope.props = {};
+ scope.mapStateToProps(scope.state);
+
+ $rootScope.$on('supportStaffFormStateChanged', function (event, data) {
+ scope.mapStateToProps(data);
+ });
+
+ scope.mapStateToProps = function(state) {
+ return state;
+ };
+ }
+ };
+});
\ No newline at end of file
Comments
+ +