86 lines
1.7 KiB
Python
Raw Normal View History

from __future__ import unicode_literals
2014-02-14 15:47:51 +05:30
from frappe import _
2014-02-07 18:12:43 +05:30
def get_data():
2016-01-14 18:14:50 +05:30
return [
{
"module_name": "Accounts",
"color": "#3498db",
2014-12-31 14:42:23 +05:30
"icon": "octicon octicon-repo",
"type": "module"
},
2016-01-14 18:14:50 +05:30
{
"module_name": "CRM",
"color": "#EF4DB6",
"icon": "octicon octicon-broadcast",
"type": "module"
},
{
"module_name": "Selling",
"color": "#1abc9c",
"icon": "icon-tag",
"icon": "octicon octicon-tag",
"type": "module"
},
{
"module_name": "Buying",
"color": "#c0392b",
"icon": "icon-shopping-cart",
2014-12-31 14:42:23 +05:30
"icon": "octicon octicon-briefcase",
"type": "module"
},
2016-01-14 18:14:50 +05:30
{
"module_name": "HR",
"color": "#2ecc71",
"icon": "icon-group",
2014-12-31 14:42:23 +05:30
"icon": "octicon octicon-organization",
"label": _("Human Resources"),
"type": "module"
},
2016-01-14 18:14:50 +05:30
{
"module_name": "Manufacturing",
"color": "#7f8c8d",
"icon": "icon-cogs",
2015-01-02 14:40:48 +05:30
"icon": "octicon octicon-tools",
"type": "module"
},
2016-01-14 18:14:50 +05:30
{
"module_name": "POS",
2014-08-08 15:30:49 +05:30
"color": "#589494",
"icon": "icon-th",
2014-12-31 14:42:23 +05:30
"icon": "octicon octicon-credit-card",
2014-08-08 15:30:49 +05:30
"type": "page",
2016-01-04 15:48:37 +05:30
"link": "pos",
"label": _("POS")
2014-08-08 15:30:49 +05:30
},
2016-01-14 18:14:50 +05:30
{
"module_name": "Projects",
"color": "#8e44ad",
"icon": "icon-puzzle-piece",
2014-12-31 14:42:23 +05:30
"icon": "octicon octicon-rocket",
"type": "module"
},
2016-01-14 18:14:50 +05:30
{
"module_name": "Stock",
"color": "#f39c12",
"icon": "icon-truck",
2014-12-31 14:42:23 +05:30
"icon": "octicon octicon-package",
"type": "module"
},
2016-01-14 18:14:50 +05:30
{
"module_name": "Support",
"color": "#2c3e50",
"icon": "icon-phone",
2014-12-31 14:42:23 +05:30
"icon": "octicon octicon-issue-opened",
"type": "module"
},
2016-01-14 18:14:50 +05:30
{
"module_name": "Learn",
"color": "#FF888B",
"icon": "octicon octicon-device-camera-video",
"type": "module",
2016-01-04 15:48:37 +05:30
"is_help": True,
"label": _("Learn")
}
2016-01-14 18:14:50 +05:30
]