blob: 6acf081b3f6200c626542842aae09fc49ac8676d [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"
Rushabh Mehta20038ad2016-07-21 16:01:59 +053051 }
52 ]
53 },
54 {
55 "label": _("Schedule"),
56 "items": [
57 {
58 "type": "doctype",
59 "name": "Course Schedule",
60 "route": "Calendar/Course Schedule"
61 },
62 {
63 "type": "doctype",
64 "name": "Student Attendance"
65 },
66 {
67 "type": "doctype",
Neil Trini Lasrado50b22782016-08-01 23:45:33 +053068 "name": "Assessment"
69 },
70 {
71 "type": "doctype",
72 "name": "Assessment Group"
Rushabh Mehta20038ad2016-07-21 16:01:59 +053073 },
74 {
75 "type": "doctype",
Neil Trini Lasrado6cfb60d2016-07-22 19:05:48 +053076 "name": "Scheduling Tool"
Rushabh Mehta20038ad2016-07-21 16:01:59 +053077 }
78 ]
79 },
80 {
81 "label": _("Fees"),
82 "items": [
83 {
84 "type": "doctype",
85 "name": "Fees"
86 },
87 {
88 "type": "doctype",
89 "name": "Fee Structure"
90 },
91 {
92 "type": "doctype",
93 "name": "Fee Category"
94 },
95 {
96 "type": "report",
97 "name": "Student Fee Collection",
98 "doctype": "Fees",
99 "is_query_report": True
100 }
101 ]
102 },
103 {
Neil Trini Lasrado6cfb60d2016-07-22 19:05:48 +0530104 "label": _("LMS"),
105 "items": [
106 {
107 "type": "doctype",
108 "name": "Announcement"
109 },
110 {
111 "type": "doctype",
112 "name": "Topic"
113 },
114 {
115 "type": "doctype",
116 "name": "Discussion"
117 }
118 ]
119 },
120 {
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530121 "label": _("Setup"),
122 "items": [
123 {
124 "type": "doctype",
125 "name": "Course"
126 },
127 {
128 "type": "doctype",
Neil Trini Lasradoc20adb52016-09-05 16:55:54 +0530129 "name": "Program"
manqalab2b23832016-09-03 16:35:06 +0100130 },
131 {
132 "type": "doctype",
Neil Trini Lasradoc20adb52016-09-05 16:55:54 +0530133 "name": "Student Category"
134 },
135 {
136 "type": "doctype",
137 "name": "Grading Structure"
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530138 },
139 {
140 "type": "doctype",
141 "name": "Instructor"
142 },
143 {
144 "type": "doctype",
145 "name": "Room"
146 },
147 {
148 "type": "doctype",
149 "name": "Academic Term"
150 },
151 {
152 "type": "doctype",
153 "name": "Academic Year"
154 }
155 ]
156 },
157 ]