blob: 08846a202a794257357d5dc46a32e686c97c684d [file] [log] [blame]
Manas Solanki966f1412017-11-23 15:22:10 +05301from __future__ import unicode_literals
2from frappe import _
3
4def get_data():
5 return [
6 {
7 "label": _("Student"),
8 "items": [
9 {
10 "type": "doctype",
11 "name": "Student"
12 },
13 {
14 "type": "doctype",
15 "name": "Guardian"
16 },
17 {
18 "type": "doctype",
19 "name": "Student Log"
20 },
21 {
22 "type": "doctype",
23 "name": "Student Group"
24 },
25 {
26 "type": "doctype",
27 "name": "Student Group Creation Tool"
28 },
29 {
30 "type": "report",
31 "is_query_report": True,
32 "name": "Student and Guardian Contact Details",
33 "doctype": "Program Enrollment"
34 }
35
36 ]
37 },
38 {
39 "label": _("Admission"),
40 "items": [
41
42 {
43 "type": "doctype",
44 "name": "Student Applicant"
45 },
46 {
47 "type": "doctype",
48 "name": "Student Admission"
49 },
50 {
51 "type": "doctype",
52 "name": "Program Enrollment"
53 },
54 {
55 "type": "doctype",
56 "name": "Program Enrollment Tool"
57 }
58 ]
59 },
60 {
61 "label": _("Attendance"),
62 "items": [
63 {
64 "type": "doctype",
65 "name": "Student Attendance"
66 },
67 {
68 "type": "doctype",
69 "name": "Student Leave Application"
70 },
71 {
72 "type": "doctype",
73 "name": "Student Attendance Tool"
74 },
75 {
76 "type": "report",
77 "is_query_report": True,
78 "name": "Absent Student Report",
79 "doctype": "Student Attendance"
80 },
81 {
82 "type": "report",
83 "is_query_report": True,
84 "name": "Student Batch-Wise Attendance",
85 "doctype": "Student Attendance"
86 },
87 {
88 "type": "report",
89 "is_query_report": True,
90 "name": "Student Monthly Attendance Sheet",
91 "doctype": "Student Attendance"
92 }
93 ]
94 },
95 {
96 "label": _("Schedule"),
97 "items": [
98 {
99 "type": "doctype",
100 "name": "Course Schedule",
101 "route": "List/Course Schedule/Calendar"
102 },
103 {
104 "type": "doctype",
105 "name": "Course Scheduling Tool"
106 }
107 ]
108 },
109 {
110 "label": _("Assessment"),
111 "items": [
112 {
113 "type": "doctype",
114 "name": "Assessment Plan"
115 },
116 {
117 "type": "doctype",
118 "name": "Assessment Group",
119 "link": "Tree/Assessment Group",
120 },
121 {
122 "type": "doctype",
123 "name": "Assessment Result"
124 },
125 {
126 "type": "doctype",
127 "name": "Assessment Criteria"
128 },
129 {
130 "type": "doctype",
131 "name": "Assessment Criteria Group"
132 },
133 {
134 "type": "doctype",
135 "name": "Assessment Result Tool"
136 },
137 {
138 "type": "report",
139 "is_query_report": True,
140 "name": "Course wise Assessment Report",
141 "doctype": "Assessment Result"
142 },
143 {
144 "type": "report",
145 "is_query_report": True,
146 "name": "Assessment Plan Status",
147 "doctype": "Assessment Plan"
148 },
149
150 ]
151 },
152 {
153 "label": _("Fees"),
154 "items": [
155 {
156 "type": "doctype",
157 "name": "Fees"
158 },
159 {
160 "type": "doctype",
161 "name": "Fee Schedule"
162 },
163 {
164 "type": "doctype",
165 "name": "Fee Structure"
166 },
167 {
168 "type": "doctype",
169 "name": "Fee Category"
170 },
171 {
172 "type": "report",
173 "name": "Student Fee Collection",
174 "doctype": "Fees",
175 "is_query_report": True
176 }
177 ]
178 },
179 {
180 "label": _("Setup"),
181 "items": [
182 {
183 "type": "doctype",
184 "name": "Course"
185 },
186 {
187 "type": "doctype",
188 "name": "Program"
189 },
190 {
191 "type": "doctype",
192 "name": "Instructor"
193 },
194 {
195 "type": "doctype",
196 "name": "Room"
197 },
198 {
199 "type": "doctype",
200 "name": "Student Category"
201 },
202 {
203 "type": "doctype",
204 "name": "Student Batch Name"
205 },
206 {
207 "type": "doctype",
208 "name": "Grading Scale"
209 },
210 {
211 "type": "doctype",
212 "name": "Academic Term"
213 },
214 {
215 "type": "doctype",
216 "name": "Academic Year"
217 },
218 {
219 "type": "doctype",
220 "name": "Education Settings"
221 }
222 ]
223 },
224 ]