blob: c33849651880ba2ff084592349e68afe9af672ec [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 {
59 "label": _("Schedule"),
60 "items": [
61 {
62 "type": "doctype",
63 "name": "Course Schedule",
64 "route": "Calendar/Course Schedule"
65 },
66 {
67 "type": "doctype",
68 "name": "Student Attendance"
69 },
70 {
71 "type": "doctype",
Neil Trini Lasradob444d5d2016-11-21 17:04:23 +053072 "name": "Course Scheduling Tool"
Neil Trini Lasradodefdd782016-11-17 18:52:31 +053073 },
74 {
75 "type": "doctype",
76 "name": "Student Batch Attendance Tool"
Neil Trini Lasradod3a410b2016-11-28 15:25:17 +053077 },
78 {
79 "type": "report",
80 "is_query_report": True,
81 "name": "Student Monthly Attendance Sheet",
82 "doctype": "Attendance"
Neil Trini Lasradodefdd782016-11-17 18:52:31 +053083 }
84 ]
85 },
86 {
87 "label": _("Assessment"),
88 "items": [
89 {
90 "type": "doctype",
Neil Trini Lasrado50b22782016-08-01 23:45:33 +053091 "name": "Assessment"
92 },
93 {
94 "type": "doctype",
95 "name": "Assessment Group"
Rushabh Mehta20038ad2016-07-21 16:01:59 +053096 },
97 {
98 "type": "doctype",
Neil Trini Lasradodefdd782016-11-17 18:52:31 +053099 "name": "Grading Structure"
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530100 }
101 ]
102 },
103 {
104 "label": _("Fees"),
105 "items": [
106 {
107 "type": "doctype",
108 "name": "Fees"
109 },
110 {
111 "type": "doctype",
112 "name": "Fee Structure"
113 },
114 {
115 "type": "doctype",
116 "name": "Fee Category"
117 },
118 {
119 "type": "report",
120 "name": "Student Fee Collection",
121 "doctype": "Fees",
122 "is_query_report": True
123 }
124 ]
125 },
126 {
Neil Trini Lasrado6cfb60d2016-07-22 19:05:48 +0530127 "label": _("LMS"),
128 "items": [
129 {
130 "type": "doctype",
131 "name": "Announcement"
132 },
133 {
134 "type": "doctype",
135 "name": "Topic"
136 },
137 {
138 "type": "doctype",
139 "name": "Discussion"
140 }
141 ]
142 },
143 {
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530144 "label": _("Setup"),
145 "items": [
146 {
147 "type": "doctype",
148 "name": "Course"
149 },
150 {
151 "type": "doctype",
Neil Trini Lasradoc20adb52016-09-05 16:55:54 +0530152 "name": "Program"
manqalab2b23832016-09-03 16:35:06 +0100153 },
154 {
155 "type": "doctype",
Neil Trini Lasradob444d5d2016-11-21 17:04:23 +0530156 "name": "Instructor"
157 },
158 {
159 "type": "doctype",
160 "name": "Room"
Neil Trini Lasradodefdd782016-11-17 18:52:31 +0530161 },
162 {
163 "type": "doctype",
Neil Trini Lasradoc20adb52016-09-05 16:55:54 +0530164 "name": "Student Category"
165 },
166 {
167 "type": "doctype",
Neil Trini Lasradob444d5d2016-11-21 17:04:23 +0530168 "name": "Student Batch Name"
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530169 },
170 {
171 "type": "doctype",
172 "name": "Academic Term"
173 },
174 {
175 "type": "doctype",
176 "name": "Academic Year"
177 }
178 ]
179 },
180 ]