apollosc/src/app/components/app-sidebar/app-sidebar.component.ts
2018-08-01 15:38:07 +05:30

171 lines
3.8 KiB
TypeScript

import { Component } from '@angular/core';
@Component({
selector: 'app-sidebar',
templateUrl: './app-sidebar.component.html'
})
export class AppSidebar {
ngOnInit(): void {}
navItems = [
{
name: 'Dashboard',
url: '/dashboard',
icon: 'icon-speedometer'
},
// {
// name: 'Widgets',
// url: '/widgets',
// icon: 'icon-calculator'
// },
// {
// name: 'Charts',
// url: '/charts',
// icon: 'icon-pie-chart'
// },
// {
// name: 'Components',
// icon: 'icon-pie-chart',
// children: [
// {
// name: 'Buttons',
// url: '/components/buttons',
// icon: 'icon-puzzle'
// }
// ]
// },
{
name: 'Masters',
icon: 'fa fa-gear',
children: [
{
name: 'Role',
url: '/masters/role',
icon: 'fa fa-user-secret'
},{
name: 'Employee',
url: '/masters/employee',
icon: 'fa fa-users'
},{
name: 'Study Center',
url: '/masters/studyCenter',
icon: 'fa fa-language'
},{
name: 'Form List',
url: '/masters/formList',
icon: 'fa fa-language'
},
{
name: 'University',
url: '/masters/UniversityMaster',
icon: 'fa fa-university'
},
{
name: 'Course',
url: '/masters/coursemaster',
icon: 'fa fa-book'
},
{
name: 'Share Allocate',
url: '/masters/shareallotmentmaster',
icon: 'fa fa-adjust'
},
{
name: 'Batch',
url: '/masters/BatchMaster',
icon: 'fa fa-tasks'
},
{
name: 'Session',
url: '/masters/sessionmaster',
icon: 'fa fa-support'
},
{
name: 'Status',
url: '/masters/statusmaster',
icon: 'fa fa-bullseye'
},
{
name: 'Fees',
url: '/masters/FeesMaster',
icon: 'fa fa-money'
},
{
name: 'Document',
url: '/masters/DocumentMaster',
icon: 'fa fa-file'
},
{
name: 'Exam Timetable',
url: '/masters/ExamTimetable',
icon: 'fa fa-calendar-minus-o'
}
]
},{
name: 'Status',
icon: 'fa fa-tasks',
children: [
{
name: 'Application',
url: '/status/application',
icon: 'fa fa-sticky-note'
},
{
name: 'Courier',
url: '/status/courier',
icon: 'fa fa-suitcase'
},{
name: 'Study Material',
url: '/status/studyMaterial',
icon: 'fa fa-square-o'
},{
name: 'Answer Booklet',
url: '/status/answerBooklet',
icon: 'fa fa-file-word-o'
},{
name: 'Documents',
url: '/status/documents',
icon: 'fa fa-file-pdf-o'
},
{
name: 'PaymentDetails',
url: '/status/paymentdetails',
icon: 'fa fa-credit-card-alt'
}
]
},{
name: 'Entrollment',
icon: 'fa fa-graduation-cap',
children: [
{
name: 'Student Entrollment',
url: '/entrollment/student',
icon: 'fa fa-user'
}
]
},{
name: 'Study Material',
icon: 'fa fa-book',
children: [
{
name: 'ReceivedMaterial',
url: '/studymaterial/receivedmaterial',
icon: 'fa fa-file-text-o'
},
{
name: 'AllocateMaterial',
url: '/studymaterial/allocatematerial',
icon: 'fa fa-file'
}
]
},
{
name: 'Fees Receive/Refund ',
icon: 'fa fa-money',
url: '/receivefees',
}
];
}