2014-02-14 10:17:51 +00:00
|
|
|
from frappe import _
|
2014-02-07 12:42:43 +00:00
|
|
|
|
|
|
|
data = {
|
2013-12-23 10:39:00 +00:00
|
|
|
"Accounts": {
|
|
|
|
"color": "#3498db",
|
|
|
|
"icon": "icon-money",
|
|
|
|
"type": "module"
|
|
|
|
},
|
|
|
|
"Activity": {
|
|
|
|
"color": "#e67e22",
|
|
|
|
"icon": "icon-play",
|
2014-02-07 12:42:43 +00:00
|
|
|
"label": _("Activity"),
|
2013-12-23 10:39:00 +00:00
|
|
|
"link": "activity",
|
|
|
|
"type": "page"
|
|
|
|
},
|
|
|
|
"Buying": {
|
|
|
|
"color": "#c0392b",
|
|
|
|
"icon": "icon-shopping-cart",
|
|
|
|
"type": "module"
|
|
|
|
},
|
|
|
|
"HR": {
|
|
|
|
"color": "#2ecc71",
|
|
|
|
"icon": "icon-group",
|
2014-02-07 12:42:43 +00:00
|
|
|
"label": _("Human Resources"),
|
2013-12-23 10:39:00 +00:00
|
|
|
"type": "module"
|
|
|
|
},
|
|
|
|
"Manufacturing": {
|
|
|
|
"color": "#7f8c8d",
|
|
|
|
"icon": "icon-cogs",
|
|
|
|
"type": "module"
|
|
|
|
},
|
|
|
|
"Notes": {
|
|
|
|
"color": "#95a5a6",
|
|
|
|
"doctype": "Note",
|
|
|
|
"icon": "icon-file-alt",
|
2014-02-07 12:42:43 +00:00
|
|
|
"label": _("Notes"),
|
2013-12-23 10:39:00 +00:00
|
|
|
"link": "List/Note",
|
|
|
|
"type": "list"
|
|
|
|
},
|
|
|
|
"Projects": {
|
|
|
|
"color": "#8e44ad",
|
|
|
|
"icon": "icon-puzzle-piece",
|
|
|
|
"type": "module"
|
|
|
|
},
|
|
|
|
"Selling": {
|
|
|
|
"color": "#1abc9c",
|
|
|
|
"icon": "icon-tag",
|
|
|
|
"type": "module"
|
|
|
|
},
|
|
|
|
"Stock": {
|
|
|
|
"color": "#f39c12",
|
|
|
|
"icon": "icon-truck",
|
|
|
|
"type": "module"
|
|
|
|
},
|
|
|
|
"Support": {
|
|
|
|
"color": "#2c3e50",
|
|
|
|
"icon": "icon-phone",
|
|
|
|
"type": "module"
|
|
|
|
}
|
|
|
|
}
|