blob: ee1a8cbf1aee8d33f10f6e730b8fbd16bd30475d [file] [log] [blame]
Rushabh Mehta20038ad2016-07-21 16:01:59 +05301from __future__ import unicode_literals
2from frappe import _
3
4def get_data():
5 return [
6 {
7 "label": _("Student"),
8 "items": [
9
10 {
11 "type": "doctype",
12 "name": "Student"
13 },
14 {
15 "type": "doctype",
16 "name": "Student Group"
17 },
18 {
19 "type": "doctype",
20 "name": "Student Applicant"
21 },
22 {
23 "type": "doctype",
24 "name": "Program Enrollment"
25 },
26 {
27 "type": "doctype",
28 "name": "Program Enrollment Tool"
29 },
30 {
31 "type": "doctype",
32 "name": "Student Group Creation Tool"
33 }
34 ]
35 },
36 {
37 "label": _("Schedule"),
38 "items": [
39 {
40 "type": "doctype",
41 "name": "Course Schedule",
42 "route": "Calendar/Course Schedule"
43 },
44 {
45 "type": "doctype",
46 "name": "Student Attendance"
47 },
48 {
49 "type": "doctype",
50 "name": "Scheduling Tool"
51 },
52 {
53 "type": "doctype",
54 "name": "Examination"
55 }
56 ]
57 },
58 {
59 "label": _("Fees"),
60 "items": [
61 {
62 "type": "doctype",
63 "name": "Fees"
64 },
65 {
66 "type": "doctype",
67 "name": "Fee Structure"
68 },
69 {
70 "type": "doctype",
71 "name": "Fee Category"
72 },
73 {
74 "type": "report",
75 "name": "Student Fee Collection",
76 "doctype": "Fees",
77 "is_query_report": True
78 }
79 ]
80 },
81 {
82 "label": _("Setup"),
83 "items": [
84 {
85 "type": "doctype",
86 "name": "Course"
87 },
88 {
89 "type": "doctype",
90 "name": "Program"
91 },
92 {
93 "type": "doctype",
94 "name": "Instructor"
95 },
96 {
97 "type": "doctype",
98 "name": "Room"
99 },
100 {
101 "type": "doctype",
102 "name": "Academic Term"
103 },
104 {
105 "type": "doctype",
106 "name": "Academic Year"
107 }
108 ]
109 },
110 ]