Dashboard changes for student and program
This commit is contained in:
parent
5311e3898c
commit
f9cef33e41
20
erpnext/education/doctype/program/program_dashboard.py
Normal file
20
erpnext/education/doctype/program/program_dashboard.py
Normal file
@ -0,0 +1,20 @@
|
||||
from frappe import _
|
||||
|
||||
def get_data():
|
||||
return {
|
||||
'fieldname': 'program',
|
||||
'transactions': [
|
||||
{
|
||||
'label': _('Admission and Enrollment'),
|
||||
'items': ['Student Applicant', 'Program Enrollment']
|
||||
},
|
||||
{
|
||||
'label': _('Student Activity'),
|
||||
'items': ['Student Group' ]
|
||||
},
|
||||
{
|
||||
'label': _('Fee'),
|
||||
'items': ['Fees','Fee Structure']
|
||||
}
|
||||
]
|
||||
}
|
@ -9,7 +9,7 @@ def get_data():
|
||||
'transactions': [
|
||||
{
|
||||
'label': _('Admission'),
|
||||
'items': ['Program Enrollment']
|
||||
'items': ['Program Enrollment', 'Course Enrollment']
|
||||
},
|
||||
{
|
||||
'label': _('Student Activity'),
|
||||
@ -19,6 +19,10 @@ def get_data():
|
||||
'label': _('Assessment'),
|
||||
'items': ['Assessment Result']
|
||||
},
|
||||
{
|
||||
'label': _('Student Portal Activity'),
|
||||
'items': ['Course Activity', 'Quiz Activity' ]
|
||||
},
|
||||
{
|
||||
'label': _('Attendance'),
|
||||
'items': ['Student Attendance', 'Student Leave Application']
|
||||
|
Loading…
x
Reference in New Issue
Block a user