mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-26 16:34:46 +00:00
Dashboard changes for student and program
This commit is contained in:
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': [
|
'transactions': [
|
||||||
{
|
{
|
||||||
'label': _('Admission'),
|
'label': _('Admission'),
|
||||||
'items': ['Program Enrollment']
|
'items': ['Program Enrollment', 'Course Enrollment']
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'label': _('Student Activity'),
|
'label': _('Student Activity'),
|
||||||
@@ -19,6 +19,10 @@ def get_data():
|
|||||||
'label': _('Assessment'),
|
'label': _('Assessment'),
|
||||||
'items': ['Assessment Result']
|
'items': ['Assessment Result']
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'label': _('Student Portal Activity'),
|
||||||
|
'items': ['Course Activity', 'Quiz Activity' ]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
'label': _('Attendance'),
|
'label': _('Attendance'),
|
||||||
'items': ['Student Attendance', 'Student Leave Application']
|
'items': ['Student Attendance', 'Student Leave Application']
|
||||||
|
|||||||
Reference in New Issue
Block a user