Rushabh Mehta | bc4e2cd | 2017-10-17 12:30:34 +0530 | [diff] [blame] | 1 | # coding=utf-8 |
| 2 | |
Anand Doshi | d57e793 | 2015-02-24 12:24:53 +0530 | [diff] [blame] | 3 | from __future__ import unicode_literals |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 4 | from frappe import _ |
Rushabh Mehta | 22ababb | 2014-02-07 18:12:43 +0530 | [diff] [blame] | 5 | |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 6 | def get_data(): |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 7 | return [ |
| 8 | { |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 9 | "module_name": "Item", |
| 10 | "_doctype": "Item", |
| 11 | "color": "#f39c12", |
| 12 | "icon": "octicon octicon-package", |
| 13 | "type": "link", |
| 14 | "link": "List/Item" |
| 15 | }, |
| 16 | { |
| 17 | "module_name": "Customer", |
| 18 | "_doctype": "Customer", |
| 19 | "color": "#1abc9c", |
| 20 | "icon": "octicon octicon-tag", |
| 21 | "type": "link", |
| 22 | "link": "List/Customer" |
| 23 | }, |
| 24 | { |
| 25 | "module_name": "Supplier", |
| 26 | "_doctype": "Supplier", |
| 27 | "color": "#c0392b", |
| 28 | "icon": "octicon octicon-briefcase", |
| 29 | "type": "link", |
| 30 | "link": "List/Supplier" |
| 31 | }, |
| 32 | { |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 33 | "_doctype": "Employee", |
| 34 | "module_name": "Employee", |
| 35 | "color": "#2ecc71", |
| 36 | "icon": "octicon octicon-organization", |
| 37 | "type": "link", |
| 38 | "link": "List/Employee" |
| 39 | }, |
| 40 | { |
| 41 | "module_name": "Project", |
| 42 | "_doctype": "Project", |
| 43 | "color": "#8e44ad", |
| 44 | "icon": "octicon octicon-rocket", |
| 45 | "type": "link", |
| 46 | "link": "List/Project" |
| 47 | }, |
| 48 | { |
| 49 | "module_name": "Issue", |
| 50 | "color": "#2c3e50", |
| 51 | "icon": "octicon octicon-issue-opened", |
| 52 | "_doctype": "Issue", |
| 53 | "type": "link", |
| 54 | "link": "List/Issue" |
| 55 | }, |
| 56 | { |
| 57 | "module_name": "Lead", |
| 58 | "icon": "octicon octicon-broadcast", |
| 59 | "type": "module", |
| 60 | "_doctype": "Lead", |
| 61 | "type": "link", |
| 62 | "link": "List/Lead" |
| 63 | }, |
Rushabh Mehta | 0277244 | 2016-04-20 18:45:46 +0530 | [diff] [blame] | 64 | { |
Rushabh Mehta | 769dda0 | 2016-09-15 15:15:45 +0530 | [diff] [blame] | 65 | "module_name": "Profit and Loss Statement", |
Rushabh Mehta | 0277244 | 2016-04-20 18:45:46 +0530 | [diff] [blame] | 66 | "_doctype": "Account", |
| 67 | "color": "#3498db", |
| 68 | "icon": "octicon octicon-repo", |
| 69 | "type": "link", |
| 70 | "link": "query-report/Profit and Loss Statement" |
| 71 | }, |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 72 | |
| 73 | # old |
| 74 | { |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 75 | "module_name": "Accounts", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 76 | "color": "#3498db", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 77 | "icon": "octicon octicon-repo", |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 78 | "type": "module", |
| 79 | "hidden": 1 |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 80 | }, |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 81 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 82 | "module_name": "Stock", |
| 83 | "color": "#f39c12", |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 84 | "icon": "fa fa-truck", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 85 | "icon": "octicon octicon-package", |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 86 | "type": "module", |
| 87 | "hidden": 1 |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 88 | }, |
| 89 | { |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 90 | "module_name": "CRM", |
| 91 | "color": "#EF4DB6", |
| 92 | "icon": "octicon octicon-broadcast", |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 93 | "type": "module", |
| 94 | "hidden": 1 |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 95 | }, |
| 96 | { |
| 97 | "module_name": "Selling", |
| 98 | "color": "#1abc9c", |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 99 | "icon": "fa fa-tag", |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 100 | "icon": "octicon octicon-tag", |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 101 | "type": "module", |
| 102 | "hidden": 1 |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 103 | }, |
| 104 | { |
| 105 | "module_name": "Buying", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 106 | "color": "#c0392b", |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 107 | "icon": "fa fa-shopping-cart", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 108 | "icon": "octicon octicon-briefcase", |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 109 | "type": "module", |
| 110 | "hidden": 1 |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 111 | }, |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 112 | { |
| 113 | "module_name": "HR", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 114 | "color": "#2ecc71", |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 115 | "icon": "fa fa-group", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 116 | "icon": "octicon octicon-organization", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 117 | "label": _("Human Resources"), |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 118 | "type": "module", |
| 119 | "hidden": 1 |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 120 | }, |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 121 | { |
| 122 | "module_name": "Manufacturing", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 123 | "color": "#7f8c8d", |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 124 | "icon": "fa fa-cogs", |
Rushabh Mehta | ff58261 | 2015-01-02 14:40:48 +0530 | [diff] [blame] | 125 | "icon": "octicon octicon-tools", |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 126 | "type": "module", |
| 127 | "hidden": 1 |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 128 | }, |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 129 | { |
| 130 | "module_name": "POS", |
Rushabh Mehta | 72e1719 | 2014-08-08 15:30:49 +0530 | [diff] [blame] | 131 | "color": "#589494", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 132 | "icon": "octicon octicon-credit-card", |
Rushabh Mehta | 72e1719 | 2014-08-08 15:30:49 +0530 | [diff] [blame] | 133 | "type": "page", |
Rushabh Mehta | eb96137 | 2016-01-04 15:48:37 +0530 | [diff] [blame] | 134 | "link": "pos", |
Rohit Waghchaure | e0934d1 | 2016-05-11 15:04:57 +0530 | [diff] [blame] | 135 | "label": _("POS") |
Rushabh Mehta | 72e1719 | 2014-08-08 15:30:49 +0530 | [diff] [blame] | 136 | }, |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 137 | { |
Prateeksha Singh | 04c4ce3 | 2017-12-20 10:51:25 +0530 | [diff] [blame] | 138 | "module_name": "Leaderboard", |
| 139 | "color": "#589494", |
| 140 | "icon": "octicon octicon-graph", |
| 141 | "type": "page", |
| 142 | "link": "leaderboard", |
| 143 | "label": _("Leaderboard") |
| 144 | }, |
| 145 | { |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 146 | "module_name": "Projects", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 147 | "color": "#8e44ad", |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 148 | "icon": "fa fa-puzzle-piece", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 149 | "icon": "octicon octicon-rocket", |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 150 | "type": "module", |
| 151 | "hidden": 1 |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 152 | }, |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 153 | { |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 154 | "module_name": "Support", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 155 | "color": "#2c3e50", |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 156 | "icon": "fa fa-phone", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 157 | "icon": "octicon octicon-issue-opened", |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 158 | "type": "module", |
| 159 | "hidden": 1 |
Rushabh Mehta | 6771240 | 2015-05-25 18:30:53 +0530 | [diff] [blame] | 160 | }, |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 161 | { |
| 162 | "module_name": "Learn", |
Rushabh Mehta | 7d23e42 | 2015-11-02 10:45:18 +0530 | [diff] [blame] | 163 | "color": "#FF888B", |
Rushabh Mehta | 7d23e42 | 2015-11-02 10:45:18 +0530 | [diff] [blame] | 164 | "icon": "octicon octicon-device-camera-video", |
Rushabh Mehta | 6771240 | 2015-05-25 18:30:53 +0530 | [diff] [blame] | 165 | "type": "module", |
Rushabh Mehta | eb96137 | 2016-01-04 15:48:37 +0530 | [diff] [blame] | 166 | "is_help": True, |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 167 | "label": _("Learn"), |
| 168 | "hidden": 1 |
Kanchan Chauhan | fb3eb13 | 2016-06-29 15:04:08 +0530 | [diff] [blame] | 169 | }, |
| 170 | { |
| 171 | "module_name": "Maintenance", |
| 172 | "color": "#FF888B", |
| 173 | "icon": "octicon octicon-tools", |
| 174 | "type": "module", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 175 | "label": _("Maintenance"), |
| 176 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 177 | }, |
| 178 | { |
| 179 | "module_name": "Student", |
| 180 | "color": "#c0392b", |
| 181 | "icon": "octicon octicon-person", |
| 182 | "label": _("Student"), |
| 183 | "link": "List/Student", |
Rushabh Mehta | 11900e8 | 2016-07-22 10:58:56 +0530 | [diff] [blame] | 184 | "_doctype": "Student", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 185 | "type": "list", |
| 186 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 187 | }, |
| 188 | { |
| 189 | "module_name": "Student Group", |
| 190 | "color": "#d59919", |
| 191 | "icon": "octicon octicon-organization", |
| 192 | "label": _("Student Group"), |
| 193 | "link": "List/Student Group", |
Rushabh Mehta | 11900e8 | 2016-07-22 10:58:56 +0530 | [diff] [blame] | 194 | "_doctype": "Student Group", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 195 | "type": "list", |
| 196 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 197 | }, |
| 198 | { |
| 199 | "module_name": "Course Schedule", |
| 200 | "color": "#fd784f", |
| 201 | "icon": "octicon octicon-calendar", |
| 202 | "label": _("Course Schedule"), |
Manas Solanki | 1fa9925 | 2018-03-07 12:08:52 +0530 | [diff] [blame] | 203 | "link": "List/Course Schedule/Calendar", |
Rushabh Mehta | 11900e8 | 2016-07-22 10:58:56 +0530 | [diff] [blame] | 204 | "_doctype": "Course Schedule", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 205 | "type": "list", |
| 206 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 207 | }, |
| 208 | { |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 209 | "module_name": "Student Attendance Tool", |
| 210 | "color": "#C0392B", |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 211 | "icon": "octicon octicon-checklist", |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 212 | "label": _("Student Attendance Tool"), |
| 213 | "link": "List/Student Attendance Tool", |
| 214 | "_doctype": "Student Attendance Tool", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 215 | "type": "list", |
| 216 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 217 | }, |
| 218 | { |
| 219 | "module_name": "Course", |
| 220 | "color": "#8e44ad", |
| 221 | "icon": "octicon octicon-book", |
| 222 | "label": _("Course"), |
| 223 | "link": "List/Course", |
Rushabh Mehta | 11900e8 | 2016-07-22 10:58:56 +0530 | [diff] [blame] | 224 | "_doctype": "Course", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 225 | "type": "list", |
| 226 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 227 | }, |
| 228 | { |
| 229 | "module_name": "Program", |
| 230 | "color": "#9b59b6", |
| 231 | "icon": "octicon octicon-repo", |
| 232 | "label": _("Program"), |
| 233 | "link": "List/Program", |
Rushabh Mehta | 11900e8 | 2016-07-22 10:58:56 +0530 | [diff] [blame] | 234 | "_doctype": "Program", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 235 | "type": "list", |
| 236 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 237 | }, |
| 238 | { |
| 239 | "module_name": "Student Applicant", |
| 240 | "color": "#4d927f", |
| 241 | "icon": "octicon octicon-clippy", |
| 242 | "label": _("Student Applicant"), |
| 243 | "link": "List/Student Applicant", |
Rushabh Mehta | 11900e8 | 2016-07-22 10:58:56 +0530 | [diff] [blame] | 244 | "_doctype": "Student Applicant", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 245 | "type": "list", |
| 246 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 247 | }, |
| 248 | { |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 249 | "module_name": "Fees", |
| 250 | "color": "#83C21E", |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 251 | "icon": "fa fa-money", |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 252 | "label": _("Fees"), |
| 253 | "link": "List/Fees", |
Rushabh Mehta | 11900e8 | 2016-07-22 10:58:56 +0530 | [diff] [blame] | 254 | "_doctype": "Fees", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 255 | "type": "list", |
| 256 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 257 | }, |
| 258 | { |
| 259 | "module_name": "Instructor", |
| 260 | "color": "#a99e4c", |
| 261 | "icon": "octicon octicon-broadcast", |
| 262 | "label": _("Instructor"), |
| 263 | "link": "List/Instructor", |
Rushabh Mehta | 11900e8 | 2016-07-22 10:58:56 +0530 | [diff] [blame] | 264 | "_doctype": "Instructor", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 265 | "type": "list", |
| 266 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 267 | }, |
| 268 | { |
| 269 | "module_name": "Room", |
| 270 | "color": "#f22683", |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 271 | "icon": "fa fa-map-marker", |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 272 | "label": _("Room"), |
| 273 | "link": "List/Room", |
Neil Trini Lasrado | 50b2278 | 2016-08-01 23:45:33 +0530 | [diff] [blame] | 274 | "_doctype": "Room", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 275 | "type": "list", |
| 276 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 277 | }, |
| 278 | { |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 279 | "module_name": "Education", |
| 280 | "color": "#428B46", |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 281 | "icon": "octicon octicon-mortar-board", |
| 282 | "type": "module", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 283 | "label": _("Education"), |
| 284 | "hidden": 1 |
Rushabh Mehta | f056974 | 2017-09-13 12:52:30 +0530 | [diff] [blame] | 285 | }, |
| 286 | { |
| 287 | "module_name": "Healthcare", |
| 288 | "color": "#FF888B", |
| 289 | "icon": "octicon octicon-plus", |
| 290 | "type": "module", |
Faris Ansari | fd345f8 | 2017-10-05 11:17:30 +0530 | [diff] [blame] | 291 | "label": _("Healthcare"), |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 292 | "hidden": 1 |
Faris Ansari | fd345f8 | 2017-10-05 11:17:30 +0530 | [diff] [blame] | 293 | }, |
| 294 | { |
Manas Solanki | 2bca5a9 | 2017-12-18 13:55:30 +0530 | [diff] [blame] | 295 | "module_name": "Data Import", |
| 296 | "color": "#FFF168", |
| 297 | "reverse": 1, |
| 298 | "doctype": "Data Import", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 299 | "icon": "octicon octicon-cloud-upload", |
Manas Solanki | 2bca5a9 | 2017-12-18 13:55:30 +0530 | [diff] [blame] | 300 | "label": _("Data Import"), |
| 301 | "link": "List/Data Import", |
| 302 | "type": "list" |
Faris Ansari | 367b90e | 2017-09-29 15:17:48 +0530 | [diff] [blame] | 303 | }, |
Rushabh Mehta | bc4e2cd | 2017-10-17 12:30:34 +0530 | [diff] [blame] | 304 | { |
| 305 | "module_name": "Restaurant", |
| 306 | "color": "#EA81E8", |
| 307 | "icon": "🍔", |
| 308 | "_doctype": "Restaurant", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 309 | "type": "list", |
Rushabh Mehta | bc4e2cd | 2017-10-17 12:30:34 +0530 | [diff] [blame] | 310 | "link": "List/Restaurant", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 311 | "label": _("Restaurant"), |
| 312 | "hidden": 1 |
| 313 | }, |
| 314 | { |
| 315 | "module_name": "Agriculture", |
| 316 | "color": "#8BC34A", |
| 317 | "icon": "octicon octicon-globe", |
| 318 | "type": "module", |
| 319 | "label": _("Agriculture"), |
| 320 | "hidden": 1 |
| 321 | }, |
| 322 | { |
| 323 | "module_name": "Crop", |
| 324 | "_doctype": "Crop", |
| 325 | "label": _("Crop"), |
| 326 | "color": "#8BC34A", |
| 327 | "icon": "fa fa-tree", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 328 | "type": "list", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 329 | "link": "List/Crop", |
| 330 | "hidden": 1 |
| 331 | }, |
| 332 | { |
| 333 | "module_name": "Crop Cycle", |
| 334 | "_doctype": "Crop Cycle", |
| 335 | "label": _("Crop Cycle"), |
| 336 | "color": "#8BC34A", |
| 337 | "icon": "fa fa-circle-o-notch", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 338 | "type": "list", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 339 | "link": "List/Crop Cycle", |
| 340 | "hidden": 1 |
| 341 | }, |
| 342 | { |
| 343 | "module_name": "Fertilizer", |
| 344 | "_doctype": "Fertilizer", |
| 345 | "label": _("Fertilizer"), |
| 346 | "color": "#8BC34A", |
| 347 | "icon": "fa fa-leaf", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 348 | "type": "list", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 349 | "link": "List/Fertilizer", |
| 350 | "hidden": 1 |
| 351 | }, |
| 352 | { |
| 353 | "module_name": "Land Unit", |
| 354 | "_doctype": "Land Unit", |
| 355 | "label": _("Land Unit"), |
| 356 | "color": "#8BC34A", |
| 357 | "icon": "fa fa-map", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 358 | "type": "list", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 359 | "link": "List/Land Unit", |
| 360 | "hidden": 1 |
| 361 | }, |
| 362 | { |
| 363 | "module_name": "Disease", |
| 364 | "_doctype": "Disease", |
| 365 | "label": _("Disease"), |
| 366 | "color": "#8BC34A", |
| 367 | "icon": "octicon octicon-bug", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 368 | "type": "list", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 369 | "link": "List/Disease", |
| 370 | "hidden": 1 |
| 371 | }, |
| 372 | { |
| 373 | "module_name": "Plant Analysis", |
| 374 | "_doctype": "Plant Analysis", |
| 375 | "label": _("Plant Analysis"), |
| 376 | "color": "#8BC34A", |
| 377 | "icon": "fa fa-pagelines", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 378 | "type": "list", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 379 | "link": "List/Plant Analysis", |
| 380 | "hidden": 1 |
| 381 | }, |
| 382 | { |
| 383 | "module_name": "Soil Analysis", |
| 384 | "_doctype": "Soil Analysis", |
| 385 | "label": _("Soil Analysis"), |
| 386 | "color": "#8BC34A", |
| 387 | "icon": "fa fa-flask", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 388 | "type": "list", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 389 | "link": "List/Soil Analysis", |
| 390 | "hidden": 1 |
| 391 | }, |
| 392 | { |
| 393 | "module_name": "Soil Texture", |
| 394 | "_doctype": "Soil Texture", |
| 395 | "label": _("Soil Texture"), |
| 396 | "color": "#8BC34A", |
| 397 | "icon": "octicon octicon-beaker", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 398 | "type": "list", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 399 | "link": "List/Soil Texture", |
| 400 | "hidden": 1 |
| 401 | }, |
| 402 | { |
| 403 | "module_name": "Water Analysis", |
| 404 | "_doctype": "Water Analysis", |
| 405 | "label": _("Water Analysis"), |
| 406 | "color": "#8BC34A", |
| 407 | "icon": "fa fa-tint", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 408 | "type": "list", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 409 | "link": "List/Water Analysis", |
| 410 | "hidden": 1 |
| 411 | }, |
| 412 | { |
| 413 | "module_name": "Weather", |
| 414 | "_doctype": "Weather", |
| 415 | "label": _("Weather"), |
| 416 | "color": "#8BC34A", |
| 417 | "icon": "fa fa-sun-o", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 418 | "type": "list", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 419 | "link": "List/Weather", |
| 420 | "hidden": 1 |
Kanchan Chauhan | e58a41a | 2017-10-17 15:17:24 +0530 | [diff] [blame] | 421 | }, |
| 422 | { |
| 423 | "module_name": "Assets", |
| 424 | "color": "#4286f4", |
| 425 | "icon": "octicon octicon-database", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 426 | "hidden": 1, |
| 427 | "label": _("Assets"), |
Kanchan Chauhan | e58a41a | 2017-10-17 15:17:24 +0530 | [diff] [blame] | 428 | "type": "module" |
| 429 | }, |
Vishal | ca61453 | 2017-09-11 15:13:16 +0530 | [diff] [blame] | 430 | { |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 431 | "module_name": "Grant Application", |
| 432 | "color": "#E9AB17", |
| 433 | "icon": "fa fa-gift", |
| 434 | "_doctype": "Grant Application", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 435 | "type": "list", |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 436 | "link": "List/Grant Application", |
Vishal | 7411617 | 2017-12-05 15:43:19 +0530 | [diff] [blame] | 437 | "label": _("Grant Application"), |
| 438 | "hidden": 1 |
| 439 | |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 440 | }, |
| 441 | { |
| 442 | "module_name": "Donor", |
| 443 | "color": "#7F5A58", |
| 444 | "icon": "fa fa-tint", |
| 445 | "_doctype": "Donor", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 446 | "type": "list", |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 447 | "link": "List/Donor", |
Vishal | 7411617 | 2017-12-05 15:43:19 +0530 | [diff] [blame] | 448 | "label": _("Donor"), |
| 449 | "hidden": 1 |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 450 | }, |
| 451 | { |
| 452 | "module_name": "Volunteer", |
| 453 | "color": "#7E587E", |
| 454 | "icon": "fa fa-angellist", |
| 455 | "_doctype": "Volunteer", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 456 | "type": "list", |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 457 | "link": "List/Volunteer", |
Vishal | 7411617 | 2017-12-05 15:43:19 +0530 | [diff] [blame] | 458 | "label": _("Volunteer"), |
| 459 | "hidden": 1 |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 460 | }, |
| 461 | { |
| 462 | "module_name": "Member", |
| 463 | "color": "#79BAEC", |
| 464 | "icon": "fa fa-users", |
| 465 | "_doctype": "Member", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 466 | "type": "list", |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 467 | "link": "List/Member", |
Vishal | 7411617 | 2017-12-05 15:43:19 +0530 | [diff] [blame] | 468 | "label": _("Member"), |
| 469 | "hidden": 1 |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 470 | }, |
| 471 | { |
| 472 | "module_name": "Chapter", |
| 473 | "color": "#3B9C9C", |
| 474 | "icon": "fa fa-handshake-o", |
| 475 | "_doctype": "Chapter", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 476 | "type": "list", |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 477 | "link": "List/Chapter", |
Vishal | 7411617 | 2017-12-05 15:43:19 +0530 | [diff] [blame] | 478 | "label": _("Chapter"), |
| 479 | "hidden": 1 |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 480 | }, |
| 481 | { |
Vishal | ca61453 | 2017-09-11 15:13:16 +0530 | [diff] [blame] | 482 | "module_name": "Non Profit", |
| 483 | "color": "#DE2B37", |
| 484 | "icon": "octicon octicon-heart", |
| 485 | "type": "module", |
Vishal | 7411617 | 2017-12-05 15:43:19 +0530 | [diff] [blame] | 486 | "label": _("Non Profit"), |
| 487 | "hidden": 1 |
Vishal | ca61453 | 2017-09-11 15:13:16 +0530 | [diff] [blame] | 488 | } |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 489 | ] |