brotherton-erpnext/erpnext/config/desktop.py

53 lines
897 B
Python
Raw Normal View History

2014-02-14 10:17:51 +00:00
from frappe import _
2014-02-07 12:42:43 +00:00
def get_data():
return {
"Accounts": {
"color": "#3498db",
"icon": "icon-money",
"type": "module"
},
"Buying": {
"color": "#c0392b",
"icon": "icon-shopping-cart",
"type": "module"
},
"HR": {
"color": "#2ecc71",
"icon": "icon-group",
"label": _("Human Resources"),
"type": "module"
},
"Manufacturing": {
"color": "#7f8c8d",
"icon": "icon-cogs",
"type": "module"
},
2014-08-08 10:00:49 +00:00
"POS": {
"color": "#589494",
"icon": "icon-th",
"type": "page",
"link": "pos"
},
"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"
}
}