blob: ad4372b88b8f70e41f12c8137e59a0a0a8a9cc90 [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 Lasrado6cfb60d2016-07-22 19:05:48 +053016 "name": "Student Batch"
17 },
18 {
19 "type": "doctype",
Rushabh Mehta20038ad2016-07-21 16:01:59 +053020 "name": "Student Group"
21 },
22 {
23 "type": "doctype",
Neil Trini Lasrado6cfb60d2016-07-22 19:05:48 +053024 "name": "Student Group Creation Tool"
25 }
26 ]
27 },
28 {
29 "label": _("Admission"),
30 "items": [
31
32 {
33 "type": "doctype",
Rushabh Mehta20038ad2016-07-21 16:01:59 +053034 "name": "Student Applicant"
35 },
36 {
37 "type": "doctype",
38 "name": "Program Enrollment"
39 },
40 {
41 "type": "doctype",
42 "name": "Program Enrollment Tool"
Rushabh Mehta20038ad2016-07-21 16:01:59 +053043 }
44 ]
45 },
46 {
47 "label": _("Schedule"),
48 "items": [
49 {
50 "type": "doctype",
51 "name": "Course Schedule",
52 "route": "Calendar/Course Schedule"
53 },
54 {
55 "type": "doctype",
56 "name": "Student Attendance"
57 },
58 {
59 "type": "doctype",
Neil Trini Lasrado6cfb60d2016-07-22 19:05:48 +053060 "name": "Examination"
Rushabh Mehta20038ad2016-07-21 16:01:59 +053061 },
62 {
63 "type": "doctype",
Neil Trini Lasrado6cfb60d2016-07-22 19:05:48 +053064 "name": "Scheduling Tool"
Rushabh Mehta20038ad2016-07-21 16:01:59 +053065 }
66 ]
67 },
68 {
69 "label": _("Fees"),
70 "items": [
71 {
72 "type": "doctype",
73 "name": "Fees"
74 },
75 {
76 "type": "doctype",
77 "name": "Fee Structure"
78 },
79 {
80 "type": "doctype",
81 "name": "Fee Category"
82 },
83 {
84 "type": "report",
85 "name": "Student Fee Collection",
86 "doctype": "Fees",
87 "is_query_report": True
88 }
89 ]
90 },
91 {
Neil Trini Lasrado6cfb60d2016-07-22 19:05:48 +053092 "label": _("LMS"),
93 "items": [
94 {
95 "type": "doctype",
96 "name": "Announcement"
97 },
98 {
99 "type": "doctype",
100 "name": "Topic"
101 },
102 {
103 "type": "doctype",
104 "name": "Discussion"
105 }
106 ]
107 },
108 {
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530109 "label": _("Setup"),
110 "items": [
111 {
112 "type": "doctype",
113 "name": "Course"
114 },
115 {
116 "type": "doctype",
117 "name": "Program"
118 },
119 {
120 "type": "doctype",
121 "name": "Instructor"
122 },
123 {
124 "type": "doctype",
125 "name": "Room"
126 },
127 {
128 "type": "doctype",
129 "name": "Academic Term"
130 },
131 {
132 "type": "doctype",
133 "name": "Academic Year"
134 }
135 ]
136 },
137 ]