blob: ce9b25503b35937294b0e56a90c6cd73278f1435 [file] [log] [blame]
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05301from frappe import _
Rushabh Mehta22ababb2014-02-07 18:12:43 +05302
Nabin Haite6085392014-05-16 19:56:06 +05303def get_data():
4 return {
5 "Accounts": {
6 "color": "#3498db",
7 "icon": "icon-money",
8 "type": "module"
9 },
Nabin Haite6085392014-05-16 19:56:06 +053010 "Buying": {
11 "color": "#c0392b",
12 "icon": "icon-shopping-cart",
13 "type": "module"
14 },
15 "HR": {
16 "color": "#2ecc71",
17 "icon": "icon-group",
18 "label": _("Human Resources"),
19 "type": "module"
20 },
21 "Manufacturing": {
22 "color": "#7f8c8d",
23 "icon": "icon-cogs",
24 "type": "module"
25 },
Rushabh Mehta72e17192014-08-08 15:30:49 +053026 "POS": {
27 "color": "#589494",
28 "icon": "icon-th",
29 "type": "page",
30 "link": "pos"
31 },
Nabin Haite6085392014-05-16 19:56:06 +053032 "Projects": {
33 "color": "#8e44ad",
34 "icon": "icon-puzzle-piece",
35 "type": "module"
36 },
37 "Selling": {
38 "color": "#1abc9c",
39 "icon": "icon-tag",
40 "type": "module"
41 },
42 "Stock": {
43 "color": "#f39c12",
44 "icon": "icon-truck",
45 "type": "module"
46 },
47 "Support": {
48 "color": "#2c3e50",
49 "icon": "icon-phone",
50 "type": "module"
Rushabh Mehta3daa49a2014-10-21 16:16:30 +053051 },
52 "Shopping Cart": {
53 "color": "#B7E090",
54 "icon": "icon-shopping-cart",
55 "label": _("Shopping Cart"),
56 "link": "Form/Shopping Cart Settings",
57 "type": "module"
Nabin Haite6085392014-05-16 19:56:06 +053058 }
Rushabh Mehtab63d5502013-12-23 16:09:00 +053059 }