blob: 581b520abecd3e2ed1ebce023dab834f93156439 [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": [
Rushabh Mehta20038ad2016-07-21 16:01:59 +05309 {
10 "type": "doctype",
11 "name": "Student"
12 },
13 {
14 "type": "doctype",
Neil Trini Lasrado986927c2016-12-28 16:15:35 +053015 "name": "Guardian"
16 },
17 {
18 "type": "doctype",
Neil Trini Lasrado1e5c2512016-07-29 13:11:39 +053019 "name": "Student Log"
20 },
21 {
22 "type": "doctype",
Neil Trini Lasrado6cfb60d2016-07-22 19:05:48 +053023 "name": "Student Batch"
24 },
25 {
26 "type": "doctype",
Rushabh Mehta20038ad2016-07-21 16:01:59 +053027 "name": "Student Group"
28 },
29 {
30 "type": "doctype",
Neil Trini Lasrado6cfb60d2016-07-22 19:05:48 +053031 "name": "Student Group Creation Tool"
32 }
33 ]
34 },
35 {
36 "label": _("Admission"),
37 "items": [
38
39 {
40 "type": "doctype",
Rushabh Mehta20038ad2016-07-21 16:01:59 +053041 "name": "Student Applicant"
42 },
43 {
44 "type": "doctype",
Neil Trini Lasrado83d81202016-09-15 14:48:13 +053045 "name": "Student Admission"
46 },
47 {
48 "type": "doctype",
Rushabh Mehta20038ad2016-07-21 16:01:59 +053049 "name": "Program Enrollment"
50 },
51 {
52 "type": "doctype",
53 "name": "Program Enrollment Tool"
Neil Trini Lasradodefdd782016-11-17 18:52:31 +053054 },
55 {
56 "type": "doctype",
Neil Trini Lasradob444d5d2016-11-21 17:04:23 +053057 "name": "Student Batch Creation Tool"
Rushabh Mehta20038ad2016-07-21 16:01:59 +053058 }
59 ]
60 },
61 {
Neil Trini Lasrado14b27c52016-11-28 15:45:38 +053062 "label": _("Attendance"),
Rushabh Mehta20038ad2016-07-21 16:01:59 +053063 "items": [
64 {
65 "type": "doctype",
Rushabh Mehta20038ad2016-07-21 16:01:59 +053066 "name": "Student Attendance"
67 },
68 {
69 "type": "doctype",
Neil Trini Lasrado14b27c52016-11-28 15:45:38 +053070 "name": "Student Leave Application"
Neil Trini Lasradodefdd782016-11-17 18:52:31 +053071 },
72 {
73 "type": "doctype",
Neil Trini Lasradoeccbf432016-12-09 17:38:59 +053074 "name": "Student Attendance Tool"
Neil Trini Lasradod3a410b2016-11-28 15:25:17 +053075 },
76 {
77 "type": "report",
78 "is_query_report": True,
Neil Trini Lasradof5c2cf42016-12-05 17:53:41 +053079 "name": "Absent Student Report",
80 "doctype": "Student Attendance"
Neil Trini Lasrado331361d2016-11-28 16:57:02 +053081 },
82 {
83 "type": "report",
84 "is_query_report": True,
Neil Trini Lasradof5c2cf42016-12-05 17:53:41 +053085 "name": "Student Batch-Wise Attendance",
86 "doctype": "Student Attendance"
Neil Trini Lasrado26078982016-12-01 12:53:40 +053087 },
88 {
89 "type": "report",
90 "is_query_report": True,
Neil Trini Lasradof5c2cf42016-12-05 17:53:41 +053091 "name": "Student Monthly Attendance Sheet",
92 "doctype": "Student Attendance"
Neil Trini Lasradodefdd782016-11-17 18:52:31 +053093 }
94 ]
95 },
96 {
Neil Trini Lasrado14b27c52016-11-28 15:45:38 +053097 "label": _("Schedule"),
98 "items": [
99 {
100 "type": "doctype",
101 "name": "Course Schedule",
102 "route": "Calendar/Course Schedule"
103 },
104 {
105 "type": "doctype",
106 "name": "Course Scheduling Tool"
107 }
108 ]
109 },
110 {
Neil Trini Lasradodefdd782016-11-17 18:52:31 +0530111 "label": _("Assessment"),
112 "items": [
113 {
114 "type": "doctype",
Neil Trini Lasrado50b22782016-08-01 23:45:33 +0530115 "name": "Assessment"
116 },
117 {
118 "type": "doctype",
119 "name": "Assessment Group"
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530120 },
121 {
122 "type": "doctype",
Neil Trini Lasrado06ed74d2016-12-14 17:49:47 +0530123 "name": "Assessment Result"
124 },
125 {
126 "type": "doctype",
127 "name": "Grading Scale"
128 },
129 {
130 "type": "doctype",
131 "name": "Evaluation Criteria"
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530132 }
133 ]
134 },
135 {
136 "label": _("Fees"),
137 "items": [
138 {
139 "type": "doctype",
140 "name": "Fees"
141 },
142 {
143 "type": "doctype",
144 "name": "Fee Structure"
145 },
146 {
147 "type": "doctype",
148 "name": "Fee Category"
149 },
150 {
151 "type": "report",
152 "name": "Student Fee Collection",
153 "doctype": "Fees",
154 "is_query_report": True
155 }
156 ]
157 },
158 {
Neil Trini Lasrado6cfb60d2016-07-22 19:05:48 +0530159 "label": _("LMS"),
160 "items": [
161 {
162 "type": "doctype",
163 "name": "Announcement"
164 },
165 {
166 "type": "doctype",
167 "name": "Topic"
168 },
169 {
170 "type": "doctype",
171 "name": "Discussion"
172 }
173 ]
174 },
175 {
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530176 "label": _("Setup"),
177 "items": [
178 {
179 "type": "doctype",
180 "name": "Course"
181 },
182 {
183 "type": "doctype",
Neil Trini Lasradoc20adb52016-09-05 16:55:54 +0530184 "name": "Program"
manqalab2b23832016-09-03 16:35:06 +0100185 },
186 {
187 "type": "doctype",
Neil Trini Lasradob444d5d2016-11-21 17:04:23 +0530188 "name": "Instructor"
189 },
190 {
191 "type": "doctype",
192 "name": "Room"
Neil Trini Lasradodefdd782016-11-17 18:52:31 +0530193 },
194 {
195 "type": "doctype",
Neil Trini Lasradoc20adb52016-09-05 16:55:54 +0530196 "name": "Student Category"
197 },
198 {
199 "type": "doctype",
Neil Trini Lasradob444d5d2016-11-21 17:04:23 +0530200 "name": "Student Batch Name"
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530201 },
202 {
203 "type": "doctype",
204 "name": "Academic Term"
205 },
206 {
207 "type": "doctype",
208 "name": "Academic Year"
209 }
210 ]
211 },
212 ]