Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 1 | from __future__ import unicode_literals |
| 2 | from frappe import _ |
| 3 | |
| 4 | def 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 Lasrado | 1e5c251 | 2016-07-29 13:11:39 +0530 | [diff] [blame] | 16 | "name": "Student Log" |
| 17 | }, |
| 18 | { |
| 19 | "type": "doctype", |
Neil Trini Lasrado | 6cfb60d | 2016-07-22 19:05:48 +0530 | [diff] [blame] | 20 | "name": "Student Batch" |
| 21 | }, |
| 22 | { |
| 23 | "type": "doctype", |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 24 | "name": "Student Group" |
| 25 | }, |
| 26 | { |
| 27 | "type": "doctype", |
Neil Trini Lasrado | 6cfb60d | 2016-07-22 19:05:48 +0530 | [diff] [blame] | 28 | "name": "Student Group Creation Tool" |
| 29 | } |
| 30 | ] |
| 31 | }, |
| 32 | { |
| 33 | "label": _("Admission"), |
| 34 | "items": [ |
| 35 | |
| 36 | { |
| 37 | "type": "doctype", |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 38 | "name": "Student Applicant" |
| 39 | }, |
| 40 | { |
| 41 | "type": "doctype", |
| 42 | "name": "Program Enrollment" |
| 43 | }, |
| 44 | { |
| 45 | "type": "doctype", |
| 46 | "name": "Program Enrollment Tool" |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 47 | } |
| 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 Lasrado | 50b2278 | 2016-08-01 23:45:33 +0530 | [diff] [blame] | 64 | "name": "Assessment" |
| 65 | }, |
| 66 | { |
| 67 | "type": "doctype", |
| 68 | "name": "Assessment Group" |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 69 | }, |
| 70 | { |
| 71 | "type": "doctype", |
Neil Trini Lasrado | 6cfb60d | 2016-07-22 19:05:48 +0530 | [diff] [blame] | 72 | "name": "Scheduling Tool" |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 73 | } |
| 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 Lasrado | 6cfb60d | 2016-07-22 19:05:48 +0530 | [diff] [blame] | 100 | "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 Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 117 | "label": _("Setup"), |
| 118 | "items": [ |
| 119 | { |
| 120 | "type": "doctype", |
| 121 | "name": "Course" |
| 122 | }, |
| 123 | { |
| 124 | "type": "doctype", |
| 125 | "name": "Program" |
| 126 | }, |
| 127 | { |
| 128 | "type": "doctype", |
| 129 | "name": "Instructor" |
| 130 | }, |
| 131 | { |
| 132 | "type": "doctype", |
| 133 | "name": "Room" |
| 134 | }, |
| 135 | { |
| 136 | "type": "doctype", |
| 137 | "name": "Academic Term" |
| 138 | }, |
| 139 | { |
| 140 | "type": "doctype", |
| 141 | "name": "Academic Year" |
| 142 | } |
| 143 | ] |
| 144 | }, |
| 145 | ] |