view file

This commit is contained in:
gayathri1990 2018-07-31 16:08:58 +05:30
parent 8547a1f840
commit f2a36c5d43
2 changed files with 16 additions and 16 deletions

View File

@ -58,7 +58,7 @@ export class AppSidebar {
{ {
name: 'University', name: 'University',
url: '/masters/UniversityMaster', url: '/masters/UniversityMaster',
icon: 'fa fa-language' icon: 'fa fa-university'
}, },
{ {
name: 'Course', name: 'Course',
@ -73,7 +73,7 @@ export class AppSidebar {
{ {
name: 'Batch', name: 'Batch',
url: '/masters/BatchMaster', url: '/masters/BatchMaster',
icon: 'fa fa-language' icon: 'fa fa-tasks'
}, },
{ {
name: 'Session', name: 'Session',
@ -88,23 +88,23 @@ export class AppSidebar {
{ {
name: 'Document', name: 'Document',
url: '/masters/DocumentMaster', url: '/masters/DocumentMaster',
icon: 'fa fa-language' icon: 'fa fa-file-o'
}, },
{ {
name: 'Fees', name: 'Fees',
url: '/masters/FeesMaster', url: '/masters/FeesMaster',
icon: 'fa fa-language' icon: 'fa fa-money'
}, },
{ {
name: 'Form', name: 'Form',
url: '/masters/FormMaster', url: '/masters/FormMaster',
icon: 'fa fa-language' icon: 'fa fa-file'
}, },
{ {
name: 'Exam Timetable', name: 'Exam Timetable',
url: '/masters/ExamTimetable', url: '/masters/ExamTimetable',
icon: 'fa fa-language' icon: 'fa fa-calendar-minus-o'
} }
] ]
},{ },{
@ -136,7 +136,7 @@ export class AppSidebar {
{ {
name: 'PaymentDetails', name: 'PaymentDetails',
url: '/status/paymentdetails', url: '/status/paymentdetails',
icon: 'fa fa-user-secret' icon: 'fa fa-credit-card-alt'
} }
] ]
},{ },{
@ -151,17 +151,17 @@ export class AppSidebar {
] ]
},{ },{
name: 'Study Material', name: 'Study Material',
icon: 'fa fa-gear', icon: 'fa fa-book',
children: [ children: [
{ {
name: 'ReceivedMaterial', name: 'ReceivedMaterial',
url: '/studymaterial/receivedmaterial', url: '/studymaterial/receivedmaterial',
icon: 'fa fa-user-secret' icon: 'fa fa-file-text-o'
}, },
{ {
name: 'AllocateMaterial', name: 'AllocateMaterial',
url: '/studymaterial/allocatematerial', url: '/studymaterial/allocatematerial',
icon: 'fa fa-user-secret' icon: 'fa fa-file'
} }
] ]
}, },

View File

@ -56,42 +56,42 @@ const routes: Routes = [
path: 'UniversityMaster', path: 'UniversityMaster',
component: UniversityMasterComponent, component: UniversityMasterComponent,
data: { data: {
title: 'University Master' title: 'University'
} }
}, },
{ {
path: 'BatchMaster', path: 'BatchMaster',
component: BatchMasterComponent, component: BatchMasterComponent,
data: { data: {
title: 'Batch Master' title: 'Batch'
} }
}, },
{ {
path: 'DocumentMaster', path: 'DocumentMaster',
component: DocumentMasterComponent, component: DocumentMasterComponent,
data: { data: {
title: 'Document Master' title: 'Document'
} }
}, },
{ {
path: 'FeesMaster', path: 'FeesMaster',
component: FeesMasterComponent, component: FeesMasterComponent,
data: { data: {
title: 'Fees Master' title: 'Fees'
} }
}, },
{ {
path: 'FormMaster', path: 'FormMaster',
component: FormMasterComponent, component: FormMasterComponent,
data: { data: {
title: 'Form Master' title: 'Form'
} }
}, },
{ {
path: 'ExamTimetable', path: 'ExamTimetable',
component: ExamtimeTableComponent, component: ExamtimeTableComponent,
data: { data: {
title: 'Exam Timetable' title: 'ExamTimetable'
} }
}, },
{ {