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',
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'
}
]
},

View File

@ -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'
}
},
{