blob: ffe99967ace98d732ac5c49f582a320d003f8a00 [file] [log] [blame]
Rushabh Mehtabc4e2cd2017-10-17 12:30:34 +05301# coding=utf-8
2
Anand Doshid57e7932015-02-24 12:24:53 +05303from __future__ import unicode_literals
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05304from frappe import _
Rushabh Mehta22ababb2014-02-07 18:12:43 +05305
Nabin Haite6085392014-05-16 19:56:06 +05306def get_data():
Rushabh Mehta1bf440b2016-01-14 18:14:50 +05307 return [
8 {
Rushabh Mehta0e2dd852016-04-13 17:21:57 +05309 "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 Mehta0e2dd852016-04-13 17:21:57 +053033 "_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 Mehta02772442016-04-20 18:45:46 +053064 {
Rushabh Mehta769dda02016-09-15 15:15:45 +053065 "module_name": "Profit and Loss Statement",
Rushabh Mehta02772442016-04-20 18:45:46 +053066 "_doctype": "Account",
67 "color": "#3498db",
68 "icon": "octicon octicon-repo",
69 "type": "link",
70 "link": "query-report/Profit and Loss Statement"
71 },
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053072
73 # old
74 {
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053075 "module_name": "Accounts",
Nabin Haite6085392014-05-16 19:56:06 +053076 "color": "#3498db",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053077 "icon": "octicon octicon-repo",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053078 "type": "module",
79 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +053080 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053081 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053082 "module_name": "Stock",
83 "color": "#f39c12",
Rushabh Mehta2167ff52016-12-07 11:08:48 +053084 "icon": "fa fa-truck",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053085 "icon": "octicon octicon-package",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053086 "type": "module",
87 "hidden": 1
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053088 },
89 {
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053090 "module_name": "CRM",
91 "color": "#EF4DB6",
92 "icon": "octicon octicon-broadcast",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053093 "type": "module",
94 "hidden": 1
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053095 },
96 {
97 "module_name": "Selling",
98 "color": "#1abc9c",
Rushabh Mehta2167ff52016-12-07 11:08:48 +053099 "icon": "fa fa-tag",
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530100 "icon": "octicon octicon-tag",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530101 "type": "module",
102 "hidden": 1
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530103 },
104 {
105 "module_name": "Buying",
Nabin Haite6085392014-05-16 19:56:06 +0530106 "color": "#c0392b",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530107 "icon": "fa fa-shopping-cart",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530108 "icon": "octicon octicon-briefcase",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530109 "type": "module",
110 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530111 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530112 {
113 "module_name": "HR",
Nabin Haite6085392014-05-16 19:56:06 +0530114 "color": "#2ecc71",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530115 "icon": "fa fa-group",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530116 "icon": "octicon octicon-organization",
Nabin Haite6085392014-05-16 19:56:06 +0530117 "label": _("Human Resources"),
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530118 "type": "module",
119 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530120 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530121 {
122 "module_name": "Manufacturing",
Nabin Haite6085392014-05-16 19:56:06 +0530123 "color": "#7f8c8d",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530124 "icon": "fa fa-cogs",
Rushabh Mehtaff582612015-01-02 14:40:48 +0530125 "icon": "octicon octicon-tools",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530126 "type": "module",
127 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530128 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530129 {
130 "module_name": "POS",
Rushabh Mehta72e17192014-08-08 15:30:49 +0530131 "color": "#589494",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530132 "icon": "octicon octicon-credit-card",
Rushabh Mehta72e17192014-08-08 15:30:49 +0530133 "type": "page",
Rushabh Mehtaeb961372016-01-04 15:48:37 +0530134 "link": "pos",
Rohit Waghchauree0934d12016-05-11 15:04:57 +0530135 "label": _("POS")
Rushabh Mehta72e17192014-08-08 15:30:49 +0530136 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530137 {
Prateeksha Singh04c4ce32017-12-20 10:51:25 +0530138 "module_name": "Leaderboard",
139 "color": "#589494",
140 "icon": "octicon octicon-graph",
141 "type": "page",
142 "link": "leaderboard",
143 "label": _("Leaderboard")
144 },
145 {
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530146 "module_name": "Projects",
Nabin Haite6085392014-05-16 19:56:06 +0530147 "color": "#8e44ad",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530148 "icon": "fa fa-puzzle-piece",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530149 "icon": "octicon octicon-rocket",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530150 "type": "module",
151 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530152 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530153 {
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530154 "module_name": "Support",
Nabin Haite6085392014-05-16 19:56:06 +0530155 "color": "#2c3e50",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530156 "icon": "fa fa-phone",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530157 "icon": "octicon octicon-issue-opened",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530158 "type": "module",
159 "hidden": 1
Rushabh Mehta67712402015-05-25 18:30:53 +0530160 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530161 {
162 "module_name": "Learn",
Rushabh Mehta7d23e422015-11-02 10:45:18 +0530163 "color": "#FF888B",
Rushabh Mehta7d23e422015-11-02 10:45:18 +0530164 "icon": "octicon octicon-device-camera-video",
Rushabh Mehta67712402015-05-25 18:30:53 +0530165 "type": "module",
Rushabh Mehtaeb961372016-01-04 15:48:37 +0530166 "is_help": True,
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530167 "label": _("Learn"),
168 "hidden": 1
Kanchan Chauhanfb3eb132016-06-29 15:04:08 +0530169 },
170 {
171 "module_name": "Maintenance",
172 "color": "#FF888B",
173 "icon": "octicon octicon-tools",
174 "type": "module",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530175 "label": _("Maintenance"),
176 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530177 },
178 {
179 "module_name": "Student",
180 "color": "#c0392b",
181 "icon": "octicon octicon-person",
182 "label": _("Student"),
183 "link": "List/Student",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530184 "_doctype": "Student",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530185 "type": "list",
186 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530187 },
188 {
189 "module_name": "Student Group",
190 "color": "#d59919",
191 "icon": "octicon octicon-organization",
192 "label": _("Student Group"),
193 "link": "List/Student Group",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530194 "_doctype": "Student Group",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530195 "type": "list",
196 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530197 },
198 {
199 "module_name": "Course Schedule",
200 "color": "#fd784f",
201 "icon": "octicon octicon-calendar",
202 "label": _("Course Schedule"),
203 "link": "Calendar/Course Schedule",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530204 "_doctype": "Course Schedule",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530205 "type": "list",
206 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530207 },
208 {
Manas Solanki966f1412017-11-23 15:22:10 +0530209 "module_name": "Student Attendance Tool",
210 "color": "#C0392B",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530211 "icon": "octicon octicon-checklist",
Manas Solanki966f1412017-11-23 15:22:10 +0530212 "label": _("Student Attendance Tool"),
213 "link": "List/Student Attendance Tool",
214 "_doctype": "Student Attendance Tool",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530215 "type": "list",
216 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530217 },
218 {
219 "module_name": "Course",
220 "color": "#8e44ad",
221 "icon": "octicon octicon-book",
222 "label": _("Course"),
223 "link": "List/Course",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530224 "_doctype": "Course",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530225 "type": "list",
226 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530227 },
228 {
229 "module_name": "Program",
230 "color": "#9b59b6",
231 "icon": "octicon octicon-repo",
232 "label": _("Program"),
233 "link": "List/Program",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530234 "_doctype": "Program",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530235 "type": "list",
236 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530237 },
238 {
239 "module_name": "Student Applicant",
240 "color": "#4d927f",
241 "icon": "octicon octicon-clippy",
242 "label": _("Student Applicant"),
243 "link": "List/Student Applicant",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530244 "_doctype": "Student Applicant",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530245 "type": "list",
246 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530247 },
248 {
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530249 "module_name": "Fees",
250 "color": "#83C21E",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530251 "icon": "fa fa-money",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530252 "label": _("Fees"),
253 "link": "List/Fees",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530254 "_doctype": "Fees",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530255 "type": "list",
256 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530257 },
258 {
259 "module_name": "Instructor",
260 "color": "#a99e4c",
261 "icon": "octicon octicon-broadcast",
262 "label": _("Instructor"),
263 "link": "List/Instructor",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530264 "_doctype": "Instructor",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530265 "type": "list",
266 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530267 },
268 {
269 "module_name": "Room",
270 "color": "#f22683",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530271 "icon": "fa fa-map-marker",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530272 "label": _("Room"),
273 "link": "List/Room",
Neil Trini Lasrado50b22782016-08-01 23:45:33 +0530274 "_doctype": "Room",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530275 "type": "list",
276 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530277 },
278 {
Manas Solanki966f1412017-11-23 15:22:10 +0530279 "module_name": "Education",
280 "color": "#428B46",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530281 "icon": "octicon octicon-mortar-board",
282 "type": "module",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530283 "label": _("Education"),
284 "hidden": 1
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530285 },
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530286 {
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530287 "module_name": "Healthcare",
288 "color": "#FF888B",
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530289 "icon": "fa fa-heartbeat",
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530290 "type": "module",
Faris Ansarifd345f82017-10-05 11:17:30 +0530291 "label": _("Healthcare"),
Ameya Shenoy5c623682017-12-06 18:36:27 +0530292 "hidden": 1
Faris Ansarifd345f82017-10-05 11:17:30 +0530293 },
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530294 {
295 "module_name": "Lab Test",
296 "color": "#7578f6",
297 "icon": "octicon octicon-beaker",
298 "doctype": "Lab Test",
299 "type": "list",
300 "link": "List/Lab Test",
301 "label": _("Lab Test")
302 },
303 {
304 "module_name": "Consultation",
305 "color": "#2ecc71",
306 "icon": "fa fa-stethoscope",
307 "doctype": "Consultation",
308 "type": "link",
309 "label": _("Consultationt")
310 },
311 {
312 "module_name": "Patient",
313 "color": "#6BE273",
314 "icon": "fa fa-user",
315 "doctype": "Patient",
316 "type": "link",
317 "label": _("Patient")
318 },
319 {
320 "module_name": "Patient Appointment",
321 "color": "#934F92",
322 "icon": "fa fa-calendar-plus-o",
323 "doctype": "Patient Appointment",
324 "type": "link",
325 "label": _("Patient Appointment")
326 },
Faris Ansarifd345f82017-10-05 11:17:30 +0530327 {
328 "module_name": "Hub",
329 "color": "#009248",
330 "icon": "/assets/erpnext/images/hub_logo.svg",
331 "type": "page",
332 "link": "hub",
333 "label": _("Hub")
Faris Ansari367b90e2017-09-29 15:17:48 +0530334 },
335 {
Manas Solanki2bca5a92017-12-18 13:55:30 +0530336 "module_name": "Data Import",
337 "color": "#FFF168",
338 "reverse": 1,
339 "doctype": "Data Import",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530340 "icon": "octicon octicon-cloud-upload",
Manas Solanki2bca5a92017-12-18 13:55:30 +0530341 "label": _("Data Import"),
342 "link": "List/Data Import",
343 "type": "list"
Faris Ansari367b90e2017-09-29 15:17:48 +0530344 },
Rushabh Mehtabc4e2cd2017-10-17 12:30:34 +0530345 {
346 "module_name": "Restaurant",
347 "color": "#EA81E8",
348 "icon": "🍔",
349 "_doctype": "Restaurant",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530350 "type": "list",
Rushabh Mehtabc4e2cd2017-10-17 12:30:34 +0530351 "link": "List/Restaurant",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530352 "label": _("Restaurant"),
353 "hidden": 1
354 },
355 {
356 "module_name": "Agriculture",
357 "color": "#8BC34A",
358 "icon": "octicon octicon-globe",
359 "type": "module",
360 "label": _("Agriculture"),
361 "hidden": 1
362 },
363 {
364 "module_name": "Crop",
365 "_doctype": "Crop",
366 "label": _("Crop"),
367 "color": "#8BC34A",
368 "icon": "fa fa-tree",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530369 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530370 "link": "List/Crop",
371 "hidden": 1
372 },
373 {
374 "module_name": "Crop Cycle",
375 "_doctype": "Crop Cycle",
376 "label": _("Crop Cycle"),
377 "color": "#8BC34A",
378 "icon": "fa fa-circle-o-notch",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530379 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530380 "link": "List/Crop Cycle",
381 "hidden": 1
382 },
383 {
384 "module_name": "Fertilizer",
385 "_doctype": "Fertilizer",
386 "label": _("Fertilizer"),
387 "color": "#8BC34A",
388 "icon": "fa fa-leaf",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530389 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530390 "link": "List/Fertilizer",
391 "hidden": 1
392 },
393 {
394 "module_name": "Land Unit",
395 "_doctype": "Land Unit",
396 "label": _("Land Unit"),
397 "color": "#8BC34A",
398 "icon": "fa fa-map",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530399 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530400 "link": "List/Land Unit",
401 "hidden": 1
402 },
403 {
404 "module_name": "Disease",
405 "_doctype": "Disease",
406 "label": _("Disease"),
407 "color": "#8BC34A",
408 "icon": "octicon octicon-bug",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530409 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530410 "link": "List/Disease",
411 "hidden": 1
412 },
413 {
414 "module_name": "Plant Analysis",
415 "_doctype": "Plant Analysis",
416 "label": _("Plant Analysis"),
417 "color": "#8BC34A",
418 "icon": "fa fa-pagelines",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530419 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530420 "link": "List/Plant Analysis",
421 "hidden": 1
422 },
423 {
424 "module_name": "Soil Analysis",
425 "_doctype": "Soil Analysis",
426 "label": _("Soil Analysis"),
427 "color": "#8BC34A",
428 "icon": "fa fa-flask",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530429 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530430 "link": "List/Soil Analysis",
431 "hidden": 1
432 },
433 {
434 "module_name": "Soil Texture",
435 "_doctype": "Soil Texture",
436 "label": _("Soil Texture"),
437 "color": "#8BC34A",
438 "icon": "octicon octicon-beaker",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530439 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530440 "link": "List/Soil Texture",
441 "hidden": 1
442 },
443 {
444 "module_name": "Water Analysis",
445 "_doctype": "Water Analysis",
446 "label": _("Water Analysis"),
447 "color": "#8BC34A",
448 "icon": "fa fa-tint",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530449 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530450 "link": "List/Water Analysis",
451 "hidden": 1
452 },
453 {
454 "module_name": "Weather",
455 "_doctype": "Weather",
456 "label": _("Weather"),
457 "color": "#8BC34A",
458 "icon": "fa fa-sun-o",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530459 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530460 "link": "List/Weather",
461 "hidden": 1
Kanchan Chauhane58a41a2017-10-17 15:17:24 +0530462 },
463 {
464 "module_name": "Assets",
465 "color": "#4286f4",
466 "icon": "octicon octicon-database",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530467 "hidden": 1,
468 "label": _("Assets"),
Kanchan Chauhane58a41a2017-10-17 15:17:24 +0530469 "type": "module"
470 },
Vishalca614532017-09-11 15:13:16 +0530471 {
Vishala68234d2017-11-22 23:11:12 +0530472 "module_name": "Grant Application",
473 "color": "#E9AB17",
474 "icon": "fa fa-gift",
475 "_doctype": "Grant Application",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530476 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530477 "link": "List/Grant Application",
Vishal74116172017-12-05 15:43:19 +0530478 "label": _("Grant Application"),
479 "hidden": 1
480
Vishala68234d2017-11-22 23:11:12 +0530481 },
482 {
483 "module_name": "Donor",
484 "color": "#7F5A58",
485 "icon": "fa fa-tint",
486 "_doctype": "Donor",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530487 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530488 "link": "List/Donor",
Vishal74116172017-12-05 15:43:19 +0530489 "label": _("Donor"),
490 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530491 },
492 {
493 "module_name": "Volunteer",
494 "color": "#7E587E",
495 "icon": "fa fa-angellist",
496 "_doctype": "Volunteer",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530497 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530498 "link": "List/Volunteer",
Vishal74116172017-12-05 15:43:19 +0530499 "label": _("Volunteer"),
500 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530501 },
502 {
503 "module_name": "Member",
504 "color": "#79BAEC",
505 "icon": "fa fa-users",
506 "_doctype": "Member",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530507 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530508 "link": "List/Member",
Vishal74116172017-12-05 15:43:19 +0530509 "label": _("Member"),
510 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530511 },
512 {
513 "module_name": "Chapter",
514 "color": "#3B9C9C",
515 "icon": "fa fa-handshake-o",
516 "_doctype": "Chapter",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530517 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530518 "link": "List/Chapter",
Vishal74116172017-12-05 15:43:19 +0530519 "label": _("Chapter"),
520 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530521 },
522 {
Vishalca614532017-09-11 15:13:16 +0530523 "module_name": "Non Profit",
524 "color": "#DE2B37",
525 "icon": "octicon octicon-heart",
526 "type": "module",
Vishal74116172017-12-05 15:43:19 +0530527 "label": _("Non Profit"),
528 "hidden": 1
Vishalca614532017-09-11 15:13:16 +0530529 }
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530530 ]