blob: 36d2b40f0d9879d0c05022088e72ab27fd968170 [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 {
138 "module_name": "Projects",
Nabin Haite6085392014-05-16 19:56:06 +0530139 "color": "#8e44ad",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530140 "icon": "fa fa-puzzle-piece",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530141 "icon": "octicon octicon-rocket",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530142 "type": "module",
143 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530144 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530145 {
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530146 "module_name": "Support",
Nabin Haite6085392014-05-16 19:56:06 +0530147 "color": "#2c3e50",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530148 "icon": "fa fa-phone",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530149 "icon": "octicon octicon-issue-opened",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530150 "type": "module",
151 "hidden": 1
Rushabh Mehta67712402015-05-25 18:30:53 +0530152 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530153 {
154 "module_name": "Learn",
Rushabh Mehta7d23e422015-11-02 10:45:18 +0530155 "color": "#FF888B",
Rushabh Mehta7d23e422015-11-02 10:45:18 +0530156 "icon": "octicon octicon-device-camera-video",
Rushabh Mehta67712402015-05-25 18:30:53 +0530157 "type": "module",
Rushabh Mehtaeb961372016-01-04 15:48:37 +0530158 "is_help": True,
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530159 "label": _("Learn"),
160 "hidden": 1
Kanchan Chauhanfb3eb132016-06-29 15:04:08 +0530161 },
162 {
163 "module_name": "Maintenance",
164 "color": "#FF888B",
165 "icon": "octicon octicon-tools",
166 "type": "module",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530167 "label": _("Maintenance"),
168 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530169 },
170 {
171 "module_name": "Student",
172 "color": "#c0392b",
173 "icon": "octicon octicon-person",
174 "label": _("Student"),
175 "link": "List/Student",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530176 "_doctype": "Student",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530177 "type": "list",
178 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530179 },
180 {
181 "module_name": "Student Group",
182 "color": "#d59919",
183 "icon": "octicon octicon-organization",
184 "label": _("Student Group"),
185 "link": "List/Student Group",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530186 "_doctype": "Student Group",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530187 "type": "list",
188 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530189 },
190 {
191 "module_name": "Course Schedule",
192 "color": "#fd784f",
193 "icon": "octicon octicon-calendar",
194 "label": _("Course Schedule"),
195 "link": "Calendar/Course Schedule",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530196 "_doctype": "Course Schedule",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530197 "type": "list",
198 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530199 },
200 {
Manas Solanki966f1412017-11-23 15:22:10 +0530201 "module_name": "Student Attendance Tool",
202 "color": "#C0392B",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530203 "icon": "octicon octicon-checklist",
Manas Solanki966f1412017-11-23 15:22:10 +0530204 "label": _("Student Attendance Tool"),
205 "link": "List/Student Attendance Tool",
206 "_doctype": "Student Attendance Tool",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530207 "type": "list",
208 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530209 },
210 {
211 "module_name": "Course",
212 "color": "#8e44ad",
213 "icon": "octicon octicon-book",
214 "label": _("Course"),
215 "link": "List/Course",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530216 "_doctype": "Course",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530217 "type": "list",
218 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530219 },
220 {
221 "module_name": "Program",
222 "color": "#9b59b6",
223 "icon": "octicon octicon-repo",
224 "label": _("Program"),
225 "link": "List/Program",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530226 "_doctype": "Program",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530227 "type": "list",
228 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530229 },
230 {
231 "module_name": "Student Applicant",
232 "color": "#4d927f",
233 "icon": "octicon octicon-clippy",
234 "label": _("Student Applicant"),
235 "link": "List/Student Applicant",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530236 "_doctype": "Student Applicant",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530237 "type": "list",
238 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530239 },
240 {
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530241 "module_name": "Fees",
242 "color": "#83C21E",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530243 "icon": "fa fa-money",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530244 "label": _("Fees"),
245 "link": "List/Fees",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530246 "_doctype": "Fees",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530247 "type": "list",
248 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530249 },
250 {
251 "module_name": "Instructor",
252 "color": "#a99e4c",
253 "icon": "octicon octicon-broadcast",
254 "label": _("Instructor"),
255 "link": "List/Instructor",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530256 "_doctype": "Instructor",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530257 "type": "list",
258 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530259 },
260 {
261 "module_name": "Room",
262 "color": "#f22683",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530263 "icon": "fa fa-map-marker",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530264 "label": _("Room"),
265 "link": "List/Room",
Neil Trini Lasrado50b22782016-08-01 23:45:33 +0530266 "_doctype": "Room",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530267 "type": "list",
268 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530269 },
270 {
Manas Solanki966f1412017-11-23 15:22:10 +0530271 "module_name": "Education",
272 "color": "#428B46",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530273 "icon": "octicon octicon-mortar-board",
274 "type": "module",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530275 "label": _("Education"),
276 "hidden": 1
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530277 },
278 {
279 "module_name": "Healthcare",
280 "color": "#FF888B",
281 "icon": "octicon octicon-plus",
282 "type": "module",
Faris Ansarifd345f82017-10-05 11:17:30 +0530283 "label": _("Healthcare"),
Ameya Shenoy5c623682017-12-06 18:36:27 +0530284 "hidden": 1
Faris Ansarifd345f82017-10-05 11:17:30 +0530285 },
286 {
287 "module_name": "Hub",
288 "color": "#009248",
289 "icon": "/assets/erpnext/images/hub_logo.svg",
290 "type": "page",
291 "link": "hub",
292 "label": _("Hub")
Faris Ansari367b90e2017-09-29 15:17:48 +0530293 },
294 {
Manas Solanki6a415bd2017-12-12 13:24:13 +0530295 "module_name": "Data Import",
296 "color": "#FFF168",
297 "reverse": 1,
298 "doctype": "Data Import",
299 "icon": "octicon octicon-cloud-upload",
300 "label": _("Data Import"),
301 "link": "List/Data Import",
302 "type": "list"
Faris Ansari367b90e2017-09-29 15:17:48 +0530303 },
Rushabh Mehtabc4e2cd2017-10-17 12:30:34 +0530304 {
305 "module_name": "Restaurant",
306 "color": "#EA81E8",
307 "icon": "🍔",
308 "_doctype": "Restaurant",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530309 "type": "list",
Rushabh Mehtabc4e2cd2017-10-17 12:30:34 +0530310 "link": "List/Restaurant",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530311 "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 Solanki6a415bd2017-12-12 13:24:13 +0530328 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530329 "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 Solanki6a415bd2017-12-12 13:24:13 +0530338 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530339 "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 Solanki6a415bd2017-12-12 13:24:13 +0530348 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530349 "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 Solanki6a415bd2017-12-12 13:24:13 +0530358 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530359 "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 Solanki6a415bd2017-12-12 13:24:13 +0530368 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530369 "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 Solanki6a415bd2017-12-12 13:24:13 +0530378 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530379 "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 Solanki6a415bd2017-12-12 13:24:13 +0530388 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530389 "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 Solanki6a415bd2017-12-12 13:24:13 +0530398 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530399 "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 Solanki6a415bd2017-12-12 13:24:13 +0530408 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530409 "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 Solanki6a415bd2017-12-12 13:24:13 +0530418 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530419 "link": "List/Weather",
420 "hidden": 1
Kanchan Chauhane58a41a2017-10-17 15:17:24 +0530421 },
422 {
423 "module_name": "Assets",
424 "color": "#4286f4",
425 "icon": "octicon octicon-database",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530426 "hidden": 1,
427 "label": _("Assets"),
Kanchan Chauhane58a41a2017-10-17 15:17:24 +0530428 "type": "module"
429 },
Vishalca614532017-09-11 15:13:16 +0530430 {
Vishala68234d2017-11-22 23:11:12 +0530431 "module_name": "Grant Application",
432 "color": "#E9AB17",
433 "icon": "fa fa-gift",
434 "_doctype": "Grant Application",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530435 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530436 "link": "List/Grant Application",
Vishal74116172017-12-05 15:43:19 +0530437 "label": _("Grant Application"),
438 "hidden": 1
439
Vishala68234d2017-11-22 23:11:12 +0530440 },
441 {
442 "module_name": "Donor",
443 "color": "#7F5A58",
444 "icon": "fa fa-tint",
445 "_doctype": "Donor",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530446 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530447 "link": "List/Donor",
Vishal74116172017-12-05 15:43:19 +0530448 "label": _("Donor"),
449 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530450 },
451 {
452 "module_name": "Volunteer",
453 "color": "#7E587E",
454 "icon": "fa fa-angellist",
455 "_doctype": "Volunteer",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530456 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530457 "link": "List/Volunteer",
Vishal74116172017-12-05 15:43:19 +0530458 "label": _("Volunteer"),
459 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530460 },
461 {
462 "module_name": "Member",
463 "color": "#79BAEC",
464 "icon": "fa fa-users",
465 "_doctype": "Member",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530466 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530467 "link": "List/Member",
Vishal74116172017-12-05 15:43:19 +0530468 "label": _("Member"),
469 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530470 },
471 {
472 "module_name": "Chapter",
473 "color": "#3B9C9C",
474 "icon": "fa fa-handshake-o",
475 "_doctype": "Chapter",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530476 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530477 "link": "List/Chapter",
Vishal74116172017-12-05 15:43:19 +0530478 "label": _("Chapter"),
479 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530480 },
481 {
Vishalca614532017-09-11 15:13:16 +0530482 "module_name": "Non Profit",
483 "color": "#DE2B37",
484 "icon": "octicon octicon-heart",
485 "type": "module",
Vishal74116172017-12-05 15:43:19 +0530486 "label": _("Non Profit"),
487 "hidden": 1
Vishalca614532017-09-11 15:13:16 +0530488 }
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530489 ]