blob: 857a4223b0bf5468f3e04049b2cd6a043c883e13 [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",
42 "name": "Program Enrollment"
43 },
44 {
45 "type": "doctype",
46 "name": "Program Enrollment Tool"
Rushabh Mehta20038ad2016-07-21 16:01:59 +053047 }
48 ]
49 },
50 {
51 "label": _("Schedule"),
52 "items": [
53 {
54 "type": "doctype",
55 "name": "Course Schedule",
56 "route": "Calendar/Course Schedule"
57 },
58 {
59 "type": "doctype",
60 "name": "Student Attendance"
61 },
62 {
63 "type": "doctype",
Neil Trini Lasrado50b22782016-08-01 23:45:33 +053064 "name": "Assessment"
65 },
66 {
67 "type": "doctype",
68 "name": "Assessment Group"
Rushabh Mehta20038ad2016-07-21 16:01:59 +053069 },
70 {
71 "type": "doctype",
Neil Trini Lasrado6cfb60d2016-07-22 19:05:48 +053072 "name": "Scheduling Tool"
Rushabh Mehta20038ad2016-07-21 16:01:59 +053073 }
74 ]
75 },
76 {
77 "label": _("Fees"),
78 "items": [
79 {
80 "type": "doctype",
81 "name": "Fees"
82 },
83 {
84 "type": "doctype",
85 "name": "Fee Structure"
86 },
87 {
88 "type": "doctype",
89 "name": "Fee Category"
90 },
91 {
92 "type": "report",
93 "name": "Student Fee Collection",
94 "doctype": "Fees",
95 "is_query_report": True
96 }
97 ]
98 },
99 {
Neil Trini Lasrado6cfb60d2016-07-22 19:05:48 +0530100 "label": _("LMS"),
101 "items": [
102 {
103 "type": "doctype",
104 "name": "Announcement"
105 },
106 {
107 "type": "doctype",
108 "name": "Topic"
109 },
110 {
111 "type": "doctype",
112 "name": "Discussion"
113 }
114 ]
115 },
116 {
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530117 "label": _("Setup"),
118 "items": [
119 {
120 "type": "doctype",
121 "name": "Course"
122 },
123 {
124 "type": "doctype",
manqalab2b23832016-09-03 16:35:06 +0100125 "name": "Grading Structure"
126 },
127 {
128 "type": "doctype",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530129 "name": "Program"
130 },
131 {
132 "type": "doctype",
133 "name": "Instructor"
134 },
135 {
136 "type": "doctype",
137 "name": "Room"
138 },
139 {
140 "type": "doctype",
141 "name": "Academic Term"
142 },
143 {
144 "type": "doctype",
145 "name": "Academic Year"
146 }
147 ]
148 },
149 ]