From f2a36c5d4339870eb65c7a6c15ccf86ca0ae71bb Mon Sep 17 00:00:00 2001 From: gayathri1990 Date: Tue, 31 Jul 2018 16:08:58 +0530 Subject: [PATCH] view file --- .../app-sidebar/app-sidebar.component.ts | 20 +++++++++---------- .../views/masters/masters-routing.module.ts | 12 +++++------ 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/app/components/app-sidebar/app-sidebar.component.ts b/src/app/components/app-sidebar/app-sidebar.component.ts index 6c80eb7..f19a1f0 100644 --- a/src/app/components/app-sidebar/app-sidebar.component.ts +++ b/src/app/components/app-sidebar/app-sidebar.component.ts @@ -58,7 +58,7 @@ export class AppSidebar { { name: 'University', url: '/masters/UniversityMaster', - icon: 'fa fa-language' + icon: 'fa fa-university' }, { name: 'Course', @@ -73,7 +73,7 @@ export class AppSidebar { { name: 'Batch', url: '/masters/BatchMaster', - icon: 'fa fa-language' + icon: 'fa fa-tasks' }, { name: 'Session', @@ -88,23 +88,23 @@ export class AppSidebar { { name: 'Document', url: '/masters/DocumentMaster', - icon: 'fa fa-language' + icon: 'fa fa-file-o' }, { name: 'Fees', url: '/masters/FeesMaster', - icon: 'fa fa-language' + icon: 'fa fa-money' }, { name: 'Form', url: '/masters/FormMaster', - icon: 'fa fa-language' + icon: 'fa fa-file' }, { name: 'Exam Timetable', url: '/masters/ExamTimetable', - icon: 'fa fa-language' + icon: 'fa fa-calendar-minus-o' } ] },{ @@ -136,7 +136,7 @@ export class AppSidebar { { name: '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', - icon: 'fa fa-gear', + icon: 'fa fa-book', children: [ { name: 'ReceivedMaterial', url: '/studymaterial/receivedmaterial', - icon: 'fa fa-user-secret' + icon: 'fa fa-file-text-o' }, { name: 'AllocateMaterial', url: '/studymaterial/allocatematerial', - icon: 'fa fa-user-secret' + icon: 'fa fa-file' } ] }, diff --git a/src/app/views/masters/masters-routing.module.ts b/src/app/views/masters/masters-routing.module.ts index 8c85eb9..9b43443 100644 --- a/src/app/views/masters/masters-routing.module.ts +++ b/src/app/views/masters/masters-routing.module.ts @@ -56,42 +56,42 @@ const routes: Routes = [ path: 'UniversityMaster', component: UniversityMasterComponent, data: { - title: 'University Master' + title: 'University' } }, { path: 'BatchMaster', component: BatchMasterComponent, data: { - title: 'Batch Master' + title: 'Batch' } }, { path: 'DocumentMaster', component: DocumentMasterComponent, data: { - title: 'Document Master' + title: 'Document' } }, { path: 'FeesMaster', component: FeesMasterComponent, data: { - title: 'Fees Master' + title: 'Fees' } }, { path: 'FormMaster', component: FormMasterComponent, data: { - title: 'Form Master' + title: 'Form' } }, { path: 'ExamTimetable', component: ExamtimeTableComponent, data: { - title: 'Exam Timetable' + title: 'ExamTimetable' } }, {