blob: 688d1189d359461ad28e36210c204fb94be5d184 [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",
54 "name": "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 Lasradodefdd782016-11-17 18:52:31 +053072 "name": "Scheduling Tool"
73 },
74 {
75 "type": "doctype",
76 "name": "Student Batch Attendance Tool"
77 }
78 ]
79 },
80 {
81 "label": _("Assessment"),
82 "items": [
83 {
84 "type": "doctype",
Neil Trini Lasrado50b22782016-08-01 23:45:33 +053085 "name": "Assessment"
86 },
87 {
88 "type": "doctype",
89 "name": "Assessment Group"
Rushabh Mehta20038ad2016-07-21 16:01:59 +053090 },
91 {
92 "type": "doctype",
Neil Trini Lasradodefdd782016-11-17 18:52:31 +053093 "name": "Grading Structure"
Rushabh Mehta20038ad2016-07-21 16:01:59 +053094 }
95 ]
96 },
97 {
98 "label": _("Fees"),
99 "items": [
100 {
101 "type": "doctype",
102 "name": "Fees"
103 },
104 {
105 "type": "doctype",
106 "name": "Fee Structure"
107 },
108 {
109 "type": "doctype",
110 "name": "Fee Category"
111 },
112 {
113 "type": "report",
114 "name": "Student Fee Collection",
115 "doctype": "Fees",
116 "is_query_report": True
117 }
118 ]
119 },
120 {
Neil Trini Lasrado6cfb60d2016-07-22 19:05:48 +0530121 "label": _("LMS"),
122 "items": [
123 {
124 "type": "doctype",
125 "name": "Announcement"
126 },
127 {
128 "type": "doctype",
129 "name": "Topic"
130 },
131 {
132 "type": "doctype",
133 "name": "Discussion"
134 }
135 ]
136 },
137 {
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530138 "label": _("Setup"),
139 "items": [
140 {
141 "type": "doctype",
142 "name": "Course"
143 },
144 {
145 "type": "doctype",
Neil Trini Lasradoc20adb52016-09-05 16:55:54 +0530146 "name": "Program"
manqalab2b23832016-09-03 16:35:06 +0100147 },
148 {
149 "type": "doctype",
Neil Trini Lasradodefdd782016-11-17 18:52:31 +0530150 "name": "Student Batch Name"
151 },
152 {
153 "type": "doctype",
Neil Trini Lasradoc20adb52016-09-05 16:55:54 +0530154 "name": "Student Category"
155 },
156 {
157 "type": "doctype",
158 "name": "Grading Structure"
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530159 },
160 {
161 "type": "doctype",
162 "name": "Instructor"
163 },
164 {
165 "type": "doctype",
166 "name": "Room"
167 },
168 {
169 "type": "doctype",
170 "name": "Academic Term"
171 },
172 {
173 "type": "doctype",
174 "name": "Academic Year"
175 }
176 ]
177 },
178 ]