blob: f9696d0b46eede03c367ec896b23e44c9afa858f [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",
Neil Trini Lasrado1e5c2512016-07-29 13:11:39 +053016 "name": "Student Log"
17 },
18 {
19 "type": "doctype",
Neil Trini Lasrado6cfb60d2016-07-22 19:05:48 +053020 "name": "Student Batch"
21 },
22 {
23 "type": "doctype",
Rushabh Mehta20038ad2016-07-21 16:01:59 +053024 "name": "Student Group"
25 },
26 {
27 "type": "doctype",
Neil Trini Lasrado6cfb60d2016-07-22 19:05:48 +053028 "name": "Student Group Creation Tool"
29 }
30 ]
31 },
32 {
33 "label": _("Admission"),
34 "items": [
35
36 {
37 "type": "doctype",
Rushabh Mehta20038ad2016-07-21 16:01:59 +053038 "name": "Student Applicant"
39 },
40 {
41 "type": "doctype",
Neil Trini Lasrado83d81202016-09-15 14:48:13 +053042 "name": "Student Admission"
43 },
44 {
45 "type": "doctype",
Rushabh Mehta20038ad2016-07-21 16:01:59 +053046 "name": "Program Enrollment"
47 },
48 {
49 "type": "doctype",
50 "name": "Program Enrollment Tool"
Neil Trini Lasradodefdd782016-11-17 18:52:31 +053051 },
52 {
53 "type": "doctype",
Neil Trini Lasradob444d5d2016-11-21 17:04:23 +053054 "name": "Student Batch Creation Tool"
Rushabh Mehta20038ad2016-07-21 16:01:59 +053055 }
56 ]
57 },
58 {
Neil Trini Lasrado14b27c52016-11-28 15:45:38 +053059 "label": _("Attendance"),
Rushabh Mehta20038ad2016-07-21 16:01:59 +053060 "items": [
61 {
62 "type": "doctype",
Rushabh Mehta20038ad2016-07-21 16:01:59 +053063 "name": "Student Attendance"
64 },
65 {
66 "type": "doctype",
Neil Trini Lasrado14b27c52016-11-28 15:45:38 +053067 "name": "Student Leave Application"
Neil Trini Lasradodefdd782016-11-17 18:52:31 +053068 },
69 {
70 "type": "doctype",
71 "name": "Student Batch Attendance Tool"
Neil Trini Lasradod3a410b2016-11-28 15:25:17 +053072 },
73 {
74 "type": "report",
75 "is_query_report": True,
Neil Trini Lasradof5c2cf42016-12-05 17:53:41 +053076 "name": "Absent Student Report",
77 "doctype": "Student Attendance"
Neil Trini Lasrado331361d2016-11-28 16:57:02 +053078 },
79 {
80 "type": "report",
81 "is_query_report": True,
Neil Trini Lasradof5c2cf42016-12-05 17:53:41 +053082 "name": "Student Batch-Wise Attendance",
83 "doctype": "Student Attendance"
Neil Trini Lasrado26078982016-12-01 12:53:40 +053084 },
85 {
86 "type": "report",
87 "is_query_report": True,
Neil Trini Lasradof5c2cf42016-12-05 17:53:41 +053088 "name": "Student Monthly Attendance Sheet",
89 "doctype": "Student Attendance"
Neil Trini Lasradodefdd782016-11-17 18:52:31 +053090 }
91 ]
92 },
93 {
Neil Trini Lasrado14b27c52016-11-28 15:45:38 +053094 "label": _("Schedule"),
95 "items": [
96 {
97 "type": "doctype",
98 "name": "Course Schedule",
99 "route": "Calendar/Course Schedule"
100 },
101 {
102 "type": "doctype",
103 "name": "Course Scheduling Tool"
104 }
105 ]
106 },
107 {
Neil Trini Lasradodefdd782016-11-17 18:52:31 +0530108 "label": _("Assessment"),
109 "items": [
110 {
111 "type": "doctype",
Neil Trini Lasrado50b22782016-08-01 23:45:33 +0530112 "name": "Assessment"
113 },
114 {
115 "type": "doctype",
116 "name": "Assessment Group"
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530117 },
118 {
119 "type": "doctype",
Neil Trini Lasradodefdd782016-11-17 18:52:31 +0530120 "name": "Grading Structure"
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530121 }
122 ]
123 },
124 {
125 "label": _("Fees"),
126 "items": [
127 {
128 "type": "doctype",
129 "name": "Fees"
130 },
131 {
132 "type": "doctype",
133 "name": "Fee Structure"
134 },
135 {
136 "type": "doctype",
137 "name": "Fee Category"
138 },
139 {
140 "type": "report",
141 "name": "Student Fee Collection",
142 "doctype": "Fees",
143 "is_query_report": True
144 }
145 ]
146 },
147 {
Neil Trini Lasrado6cfb60d2016-07-22 19:05:48 +0530148 "label": _("LMS"),
149 "items": [
150 {
151 "type": "doctype",
152 "name": "Announcement"
153 },
154 {
155 "type": "doctype",
156 "name": "Topic"
157 },
158 {
159 "type": "doctype",
160 "name": "Discussion"
161 }
162 ]
163 },
164 {
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530165 "label": _("Setup"),
166 "items": [
167 {
168 "type": "doctype",
169 "name": "Course"
170 },
171 {
172 "type": "doctype",
Neil Trini Lasradoc20adb52016-09-05 16:55:54 +0530173 "name": "Program"
manqalab2b23832016-09-03 16:35:06 +0100174 },
175 {
176 "type": "doctype",
Neil Trini Lasradob444d5d2016-11-21 17:04:23 +0530177 "name": "Instructor"
178 },
179 {
180 "type": "doctype",
181 "name": "Room"
Neil Trini Lasradodefdd782016-11-17 18:52:31 +0530182 },
183 {
184 "type": "doctype",
Neil Trini Lasradoc20adb52016-09-05 16:55:54 +0530185 "name": "Student Category"
186 },
187 {
188 "type": "doctype",
Neil Trini Lasradob444d5d2016-11-21 17:04:23 +0530189 "name": "Student Batch Name"
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530190 },
191 {
192 "type": "doctype",
193 "name": "Academic Term"
194 },
195 {
196 "type": "doctype",
197 "name": "Academic Year"
198 }
199 ]
200 },
201 ]