blob: 2299305a5efaf58d99b0a5d4816c0b360fd45a77 [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 Lasrado331361d2016-11-28 16:57:02 +053076 "name": "Absent Student Report",
77 "doctype": "Attendance"
78 },
79 {
80 "type": "report",
81 "is_query_report": True,
Neil Trini Lasradod3a410b2016-11-28 15:25:17 +053082 "name": "Student Monthly Attendance Sheet",
83 "doctype": "Attendance"
Neil Trini Lasradodefdd782016-11-17 18:52:31 +053084 }
85 ]
86 },
87 {
Neil Trini Lasrado14b27c52016-11-28 15:45:38 +053088 "label": _("Schedule"),
89 "items": [
90 {
91 "type": "doctype",
92 "name": "Course Schedule",
93 "route": "Calendar/Course Schedule"
94 },
95 {
96 "type": "doctype",
97 "name": "Course Scheduling Tool"
98 }
99 ]
100 },
101 {
Neil Trini Lasradodefdd782016-11-17 18:52:31 +0530102 "label": _("Assessment"),
103 "items": [
104 {
105 "type": "doctype",
Neil Trini Lasrado50b22782016-08-01 23:45:33 +0530106 "name": "Assessment"
107 },
108 {
109 "type": "doctype",
110 "name": "Assessment Group"
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530111 },
112 {
113 "type": "doctype",
Neil Trini Lasradodefdd782016-11-17 18:52:31 +0530114 "name": "Grading Structure"
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530115 }
116 ]
117 },
118 {
119 "label": _("Fees"),
120 "items": [
121 {
122 "type": "doctype",
123 "name": "Fees"
124 },
125 {
126 "type": "doctype",
127 "name": "Fee Structure"
128 },
129 {
130 "type": "doctype",
131 "name": "Fee Category"
132 },
133 {
134 "type": "report",
135 "name": "Student Fee Collection",
136 "doctype": "Fees",
137 "is_query_report": True
138 }
139 ]
140 },
141 {
Neil Trini Lasrado6cfb60d2016-07-22 19:05:48 +0530142 "label": _("LMS"),
143 "items": [
144 {
145 "type": "doctype",
146 "name": "Announcement"
147 },
148 {
149 "type": "doctype",
150 "name": "Topic"
151 },
152 {
153 "type": "doctype",
154 "name": "Discussion"
155 }
156 ]
157 },
158 {
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530159 "label": _("Setup"),
160 "items": [
161 {
162 "type": "doctype",
163 "name": "Course"
164 },
165 {
166 "type": "doctype",
Neil Trini Lasradoc20adb52016-09-05 16:55:54 +0530167 "name": "Program"
manqalab2b23832016-09-03 16:35:06 +0100168 },
169 {
170 "type": "doctype",
Neil Trini Lasradob444d5d2016-11-21 17:04:23 +0530171 "name": "Instructor"
172 },
173 {
174 "type": "doctype",
175 "name": "Room"
Neil Trini Lasradodefdd782016-11-17 18:52:31 +0530176 },
177 {
178 "type": "doctype",
Neil Trini Lasradoc20adb52016-09-05 16:55:54 +0530179 "name": "Student Category"
180 },
181 {
182 "type": "doctype",
Neil Trini Lasradob444d5d2016-11-21 17:04:23 +0530183 "name": "Student Batch Name"
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530184 },
185 {
186 "type": "doctype",
187 "name": "Academic Term"
188 },
189 {
190 "type": "doctype",
191 "name": "Academic Year"
192 }
193 ]
194 },
195 ]