diff --git a/src/app/views/entrollment/student/student.component.html b/src/app/views/entrollment/student/student.component.html
index 529f0f4..f4938dc 100644
--- a/src/app/views/entrollment/student/student.component.html
+++ b/src/app/views/entrollment/student/student.component.html
@@ -1 +1,421 @@
-
Student component!!
\ No newline at end of file
+
+
+
+
+ Student Entrollment
+
+
+
+ Student List
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ | Form Id |
+ Student Name |
+ Father Name |
+ Mobile |
+ Course |
+ Sem/Year |
+ Batch |
+ Status |
+ Action |
+
+
+
+
+ | {{app.formId}} |
+ {{app.studentName}} |
+ {{app.fatherName}} |
+ {{app.mobile}} |
+ {{app.course}} |
+ {{app.sem}} |
+ {{app.batch}} |
+ {{app.status}} |
+
+
+
+ |
+
+
+
+
+
+
+
+
+ Add Student
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ | Form Id |
+ Batch |
+ Course |
+ University |
+ Sem/Year |
+
+
+
+
+ | KES08432 |
+ Jan 2018 |
+ B.Com |
+ KR Univ |
+ 3 |
+
+
+ | KES04321 |
+ Jul 2017 |
+ B.Com |
+ KR Univ |
+ 2 |
+
+
+ | KES00921 |
+ Jan 2017 |
+ B.Com |
+ KR Univ |
+ 1 |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{myModalData.studentName}}
+
+
+ {{myModalData.courseName}}
+
+
+
+
+ {{myModalData.sem}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/views/entrollment/student/student.component.ts b/src/app/views/entrollment/student/student.component.ts
index 38f866c..51cd36c 100644
--- a/src/app/views/entrollment/student/student.component.ts
+++ b/src/app/views/entrollment/student/student.component.ts
@@ -10,30 +10,40 @@ export class StudentComponent implements OnInit {
closed = false;
public myModal;
public myModalData;
- employees: any;
+ students: any;
+ oldReg: boolean = false;
constructor() { }
ngOnInit(){
- this.employees = [
+ this.students = [
{
- empId: '0001',
- name: 'xyz',
+ formId: 'KAN00128',
+ studentName: 'xyz',
+ fatherName: 'mmm mmm',
mobile: '+919876543210',
- role: 'ADMIN',
+ course: 'B.Sc',
+ sem: 2,
+ batch: 'Jan 2018',
status: '1'
},
{
- empId: '0002',
- name: 'xss',
- mobile: '+911234567890',
- role: 'MANAGER',
+ formId: 'KAN00107',
+ studentName: 'abc',
+ fatherName: 'sss sss',
+ mobile: '+919876511111',
+ course: 'B.Sc',
+ sem: 4,
+ batch: 'Jan 2018',
status: '1'
},
{
- empId: '0003',
- name: 'fys',
- mobile: '+911234567890',
- role: 'STAFF',
- status: '0'
+ formId: 'KAN00086',
+ studentName: 'uvw',
+ fatherName: 'nnn nnn',
+ mobile: '+919876500000',
+ course: 'B.Sc',
+ sem: 8,
+ batch: 'Jan 2018',
+ status: '1'
}
]
}
diff --git a/src/app/views/masters/form-list/form-list.component.html b/src/app/views/masters/form-list/form-list.component.html
index 89abcf3..a70301f 100644
--- a/src/app/views/masters/form-list/form-list.component.html
+++ b/src/app/views/masters/form-list/form-list.component.html
@@ -134,7 +134,7 @@