Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 1 | from frappe import _ |
Rushabh Mehta | 22ababb | 2014-02-07 18:12:43 +0530 | [diff] [blame] | 2 | |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 3 | def 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 Mehta | 72e1719 | 2014-08-08 15:30:49 +0530 | [diff] [blame] | 41 | "POS": { |
| 42 | "color": "#589494", |
| 43 | "icon": "icon-th", |
| 44 | "type": "page", |
| 45 | "link": "pos" |
| 46 | }, |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 47 | "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 Mehta | b63d550 | 2013-12-23 16:09:00 +0530 | [diff] [blame] | 67 | } |