blob: 58f2f1799cfb64cd7c86c805688a8c7dd8997c90 [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",
scmmishra14d70ce2019-03-14 12:31:25 +053011 "name": "Student",
12 "onboard": 1,
Manas Solanki966f1412017-11-23 15:22:10 +053013 },
14 {
15 "type": "doctype",
16 "name": "Guardian"
17 },
18 {
19 "type": "doctype",
20 "name": "Student Log"
21 },
22 {
23 "type": "doctype",
24 "name": "Student Group"
Manas Solanki966f1412017-11-23 15:22:10 +053025 }
Manas Solanki966f1412017-11-23 15:22:10 +053026 ]
27 },
28 {
29 "label": _("Admission"),
30 "items": [
31
32 {
33 "type": "doctype",
34 "name": "Student Applicant"
35 },
36 {
37 "type": "doctype",
scmmishra8c41abc2018-10-02 15:41:23 +053038 "name": "Web Academy Applicant"
39 },
40 {
41 "type": "doctype",
Manas Solanki966f1412017-11-23 15:22:10 +053042 "name": "Student Admission"
43 },
44 {
45 "type": "doctype",
46 "name": "Program Enrollment"
Manas Solanki966f1412017-11-23 15:22:10 +053047 }
48 ]
49 },
50 {
51 "label": _("Attendance"),
52 "items": [
53 {
54 "type": "doctype",
55 "name": "Student Attendance"
56 },
57 {
58 "type": "doctype",
59 "name": "Student Leave Application"
60 },
61 {
Manas Solanki966f1412017-11-23 15:22:10 +053062 "type": "report",
63 "is_query_report": True,
64 "name": "Absent Student Report",
65 "doctype": "Student Attendance"
66 },
67 {
68 "type": "report",
69 "is_query_report": True,
70 "name": "Student Batch-Wise Attendance",
71 "doctype": "Student Attendance"
72 },
Manas Solanki966f1412017-11-23 15:22:10 +053073 ]
74 },
75 {
Manas Solanki37b2aa22018-02-08 19:00:51 +053076 "label": _("Tools"),
Manas Solanki966f1412017-11-23 15:22:10 +053077 "items": [
78 {
79 "type": "doctype",
Manas Solanki37b2aa22018-02-08 19:00:51 +053080 "name": "Student Attendance Tool"
81 },
82 {
83 "type": "doctype",
84 "name": "Assessment Result Tool"
85 },
86 {
87 "type": "doctype",
88 "name": "Student Group Creation Tool"
89 },
90 {
91 "type": "doctype",
92 "name": "Program Enrollment Tool"
Manas Solanki966f1412017-11-23 15:22:10 +053093 },
94 {
95 "type": "doctype",
96 "name": "Course Scheduling Tool"
97 }
98 ]
99 },
100 {
101 "label": _("Assessment"),
102 "items": [
103 {
104 "type": "doctype",
105 "name": "Assessment Plan"
106 },
107 {
108 "type": "doctype",
109 "name": "Assessment Group",
110 "link": "Tree/Assessment Group",
111 },
112 {
113 "type": "doctype",
114 "name": "Assessment Result"
115 },
116 {
117 "type": "doctype",
118 "name": "Assessment Criteria"
Manas Solanki37b2aa22018-02-08 19:00:51 +0530119 }
120 ]
121 },
122 {
123 "label": _("Assessment Reports"),
124 "items": [
Manas Solanki966f1412017-11-23 15:22:10 +0530125 {
126 "type": "report",
127 "is_query_report": True,
128 "name": "Course wise Assessment Report",
129 "doctype": "Assessment Result"
130 },
131 {
132 "type": "report",
133 "is_query_report": True,
Manas Solanki37b2aa22018-02-08 19:00:51 +0530134 "name": "Final Assessment Grades",
135 "doctype": "Assessment Result"
136 },
137 {
138 "type": "report",
139 "is_query_report": True,
Manas Solanki966f1412017-11-23 15:22:10 +0530140 "name": "Assessment Plan Status",
141 "doctype": "Assessment Plan"
142 },
Manas Solankie010ddf2018-03-21 17:50:42 +0530143 {
144 "type": "doctype",
145 "name": "Student Report Generation Tool"
146 }
Manas Solanki966f1412017-11-23 15:22:10 +0530147 ]
148 },
149 {
150 "label": _("Fees"),
151 "items": [
152 {
153 "type": "doctype",
154 "name": "Fees"
155 },
156 {
157 "type": "doctype",
158 "name": "Fee Schedule"
159 },
160 {
161 "type": "doctype",
162 "name": "Fee Structure"
163 },
164 {
165 "type": "doctype",
166 "name": "Fee Category"
Manas Solanki966f1412017-11-23 15:22:10 +0530167 }
168 ]
169 },
170 {
Manas Solanki37b2aa22018-02-08 19:00:51 +0530171 "label": _("Schedule"),
172 "items": [
173 {
174 "type": "doctype",
175 "name": "Course Schedule",
scmmishra14d70ce2019-03-14 12:31:25 +0530176 "route": "#List/Course Schedule/Calendar"
Manas Solanki37b2aa22018-02-08 19:00:51 +0530177 },
178 {
179 "type": "doctype",
180 "name": "Course Scheduling Tool"
181 }
182 ]
183 },
184 {
185 "label": _("Masters"),
Manas Solanki966f1412017-11-23 15:22:10 +0530186 "items": [
187 {
188 "type": "doctype",
scmmishra14d70ce2019-03-14 12:31:25 +0530189 "name": "Program",
190 },
191 {
scmmishra34fa33d2019-03-14 15:14:25 +0530192 "type": "doctype",
scmmishra14d70ce2019-03-14 12:31:25 +0530193 "name": "Course",
194 "onboard": 1,
scmmishra8c41abc2018-10-02 15:41:23 +0530195 },
196 {
197 "type": "doctype",
Manas Solanki966f1412017-11-23 15:22:10 +0530198 "name": "Course"
199 },
200 {
201 "type": "doctype",
scmmishra14d70ce2019-03-14 12:31:25 +0530202 "name": "Topic",
203 },
204 {
scmmishra34fa33d2019-03-14 15:14:25 +0530205 "type": "doctype",
scmmishra14d70ce2019-03-14 12:31:25 +0530206 "name": "Instructor",
207 "onboard": 1,
scmmishra699f7c62018-12-12 16:10:23 +0530208 },
209 {
210 "type": "doctype",
scmmishra14d70ce2019-03-14 12:31:25 +0530211 "name": "Room",
212 "onboard": 1,
scmmishra699f7c62018-12-12 16:10:23 +0530213 }
214 ]
215 },
216 {
217 "label": _("Content Masters"),
218 "items": [
219 {
220 "type": "doctype",
scmmishra18baff52018-10-18 15:43:03 +0530221 "name": "Article"
Manas Solanki966f1412017-11-23 15:22:10 +0530222 },
223 {
224 "type": "doctype",
scmmishra18baff52018-10-18 15:43:03 +0530225 "name": "Video"
scmmishra5311e382018-10-15 16:04:25 +0530226 },
227 {
228 "type": "doctype",
scmmishra18baff52018-10-18 15:43:03 +0530229 "name": "Quiz"
Manas Solanki37b2aa22018-02-08 19:00:51 +0530230 }
231 ]
232 },
233 {
scmmishra5311e382018-10-15 16:04:25 +0530234 "label": _("LMS Activity"),
235 "items": [
236 {
237 "type": "doctype",
238 "name": "Course Enrollment"
239 },
240 {
241 "type": "doctype",
242 "name": "Course Activity"
scmmishra3cbb9792018-10-16 13:04:11 +0530243 },
244 {
245 "type": "doctype",
246 "name": "Quiz Activity"
scmmishra5311e382018-10-15 16:04:25 +0530247 }
248 ]
249 },
250 {
Prateeksha Singh9d4a1832019-02-11 15:14:50 +0530251 "label": _("Settings"),
Manas Solanki37b2aa22018-02-08 19:00:51 +0530252 "items": [
Manas Solanki966f1412017-11-23 15:22:10 +0530253 {
254 "type": "doctype",
255 "name": "Student Category"
256 },
257 {
258 "type": "doctype",
259 "name": "Student Batch Name"
260 },
261 {
262 "type": "doctype",
scmmishra14d70ce2019-03-14 12:31:25 +0530263 "name": "Grading Scale",
264 "onboard": 1,
Manas Solanki966f1412017-11-23 15:22:10 +0530265 },
266 {
267 "type": "doctype",
268 "name": "Academic Term"
269 },
270 {
271 "type": "doctype",
272 "name": "Academic Year"
273 },
274 {
275 "type": "doctype",
276 "name": "Education Settings"
277 }
278 ]
279 },
Manas Solanki37b2aa22018-02-08 19:00:51 +0530280 {
281 "label": _("Other Reports"),
282 "items": [
283 {
284 "type": "report",
285 "is_query_report": True,
286 "name": "Student and Guardian Contact Details",
287 "doctype": "Program Enrollment"
288 },
289 {
290 "type": "report",
291 "is_query_report": True,
292 "name": "Student Monthly Attendance Sheet",
293 "doctype": "Student Attendance"
294 },
295 {
296 "type": "report",
297 "name": "Student Fee Collection",
298 "doctype": "Fees",
299 "is_query_report": True
300 }
301 ]
302 }
Manas Solanki966f1412017-11-23 15:22:10 +0530303 ]