blob: 3769fa1b30e0391f8ddc454712c3f331d83fc59c [file] [log] [blame]
Anand Doshid57e7932015-02-24 12:24:53 +05301from __future__ import unicode_literals
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05302from frappe import _
Rushabh Mehta22ababb2014-02-07 18:12:43 +05303
Nabin Haite6085392014-05-16 19:56:06 +05304def get_data():
5 return {
6 "Accounts": {
7 "color": "#3498db",
8 "icon": "icon-money",
9 "type": "module"
10 },
11 "Activity": {
12 "color": "#e67e22",
13 "icon": "icon-play",
14 "label": _("Activity"),
15 "link": "activity",
16 "type": "page"
17 },
18 "Buying": {
19 "color": "#c0392b",
20 "icon": "icon-shopping-cart",
21 "type": "module"
22 },
23 "HR": {
24 "color": "#2ecc71",
25 "icon": "icon-group",
26 "label": _("Human Resources"),
27 "type": "module"
28 },
29 "Manufacturing": {
30 "color": "#7f8c8d",
31 "icon": "icon-cogs",
32 "type": "module"
33 },
34 "Notes": {
35 "color": "#95a5a6",
36 "doctype": "Note",
37 "icon": "icon-file-alt",
38 "label": _("Notes"),
39 "link": "List/Note",
40 "type": "list"
41 },
Rushabh Mehta72e17192014-08-08 15:30:49 +053042 "POS": {
43 "color": "#589494",
44 "icon": "icon-th",
45 "type": "page",
46 "link": "pos"
47 },
Nabin Haite6085392014-05-16 19:56:06 +053048 "Projects": {
49 "color": "#8e44ad",
50 "icon": "icon-puzzle-piece",
51 "type": "module"
52 },
53 "Selling": {
54 "color": "#1abc9c",
55 "icon": "icon-tag",
56 "type": "module"
57 },
58 "Stock": {
59 "color": "#f39c12",
60 "icon": "icon-truck",
61 "type": "module"
62 },
63 "Support": {
64 "color": "#2c3e50",
65 "icon": "icon-phone",
66 "type": "module"
67 }
Rushabh Mehtab63d5502013-12-23 16:09:00 +053068 }