blob: 9f40ef33ab48279575046d2869dac4f932d6d547 [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 },
10 "Activity": {
11 "color": "#e67e22",
12 "icon": "icon-play",
13 "label": _("Activity"),
14 "link": "activity",
15 "type": "page"
16 },
17 "Buying": {
18 "color": "#c0392b",
19 "icon": "icon-shopping-cart",
20 "type": "module"
21 },
22 "HR": {
23 "color": "#2ecc71",
24 "icon": "icon-group",
25 "label": _("Human Resources"),
26 "type": "module"
27 },
28 "Manufacturing": {
29 "color": "#7f8c8d",
30 "icon": "icon-cogs",
31 "type": "module"
32 },
33 "Notes": {
34 "color": "#95a5a6",
35 "doctype": "Note",
36 "icon": "icon-file-alt",
37 "label": _("Notes"),
38 "link": "List/Note",
39 "type": "list"
40 },
Rushabh Mehta72e17192014-08-08 15:30:49 +053041 "POS": {
42 "color": "#589494",
43 "icon": "icon-th",
44 "type": "page",
45 "link": "pos"
46 },
Nabin Haite6085392014-05-16 19:56:06 +053047 "Projects": {
48 "color": "#8e44ad",
49 "icon": "icon-puzzle-piece",
50 "type": "module"
51 },
52 "Selling": {
53 "color": "#1abc9c",
54 "icon": "icon-tag",
55 "type": "module"
56 },
57 "Stock": {
58 "color": "#f39c12",
59 "icon": "icon-truck",
60 "type": "module"
61 },
62 "Support": {
63 "color": "#2c3e50",
64 "icon": "icon-phone",
65 "type": "module"
66 }
Rushabh Mehtab63d5502013-12-23 16:09:00 +053067 }