diff --git a/src/app/views/enrolment/student/student.component.html b/src/app/views/enrolment/student/student.component.html
index a7fd4cc..6d94d62 100644
--- a/src/app/views/enrolment/student/student.component.html
+++ b/src/app/views/enrolment/student/student.component.html
@@ -91,12 +91,12 @@
{{app.studentName}} |
{{app.fatherName}} |
{{app.mobile}} |
- {{app.course}} / {{app.univ}} |
+ {{app.course}} / {{app.univ}} |
{{app.sem}} |
{{app.batch}} |
Active
- In-Active
+ In-Active
|
|
diff --git a/src/app/views/study-material/study-material/study-material.component.html b/src/app/views/study-material/study-material/study-material.component.html
index 78e8b1e..62f934e 100644
--- a/src/app/views/study-material/study-material/study-material.component.html
+++ b/src/app/views/study-material/study-material/study-material.component.html
@@ -1,5 +1,5 @@
-
-
+
+
+
+
+
+
+
+
+
+
+ | Form ID |
+ Student Name |
+ Batch Name |
+ Session |
+
+
+
+
+
+ | Form001 |
+ Vikram |
+ {{ modelType | uppercase }} Batch A |
+ 1st/2018 |
+
+
+
+ | Form002 |
+ Raj |
+ {{ modelType | uppercase }} Batch A |
+ 1st/2018 |
+
+
+
+ | Form003 |
+ John |
+ {{ modelType | uppercase }} Batch A |
+ 1st/2018 |
+
+
+
+ | Form004 |
+ Karthik |
+ {{ modelType | uppercase }} Batch A |
+ 1st/2018 |
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/views/study-material/study-material/study-material.component.ts b/src/app/views/study-material/study-material/study-material.component.ts
index 7ff1f5d..f4959f3 100644
--- a/src/app/views/study-material/study-material/study-material.component.ts
+++ b/src/app/views/study-material/study-material/study-material.component.ts
@@ -10,35 +10,40 @@ export class StudyMaterialComponent implements OnInit {
public myModal;
public myModalData;
studyMaterialDetails: any;
- constructor() { }
+ constructor() { }
ngOnInit(){
this.studyMaterialDetails = [
{
- applicationId: '1',
- details: 'xyz',
- univ: 'kr university',
+ batch: 'Batch A',
+ sem:'1st Sem/2018',
course: 'B.com',
- total: '12',
- status: '1'
+ Registerforms: '30',
+ paidforms: '30',
+ receivedmaterial: '30'
},
{
- applicationId: '2',
- details: 'xyz',
- univ: 'kr university',
+ batch: 'Batch A',
+ sem:'2st Sem/2018',
course: 'B.Sc',
- total: '12',
- status: '1'
+ Registerforms: '12',
+ paidforms: '10',
+ receivedmaterial: '10'
},
{
- applicationId: '3',
- details: 'xyz',
- univ: 'kr university',
+ batch: 'Batch A',
+ sem:'3st Sem/2019',
+
course: 'MCA',
- total: '12',
- status: '0'
+ Registerforms: '16',
+ paidforms: '16',
+ receivedmaterial: '16'
}
]
}
+ save()
+ {
+ alert('hai');
+ }
getModelWindowDetails(stuCent) {
this.myModalData = stuCent||null;
|