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 | |
| 3 | data = { |
Rushabh Mehta | b63d550 | 2013-12-23 16:09:00 +0530 | [diff] [blame] | 4 | "Accounts": { |
| 5 | "color": "#3498db", |
| 6 | "icon": "icon-money", |
Rushabh Mehta | b63d550 | 2013-12-23 16:09:00 +0530 | [diff] [blame] | 7 | "type": "module" |
| 8 | }, |
| 9 | "Activity": { |
| 10 | "color": "#e67e22", |
| 11 | "icon": "icon-play", |
Rushabh Mehta | 22ababb | 2014-02-07 18:12:43 +0530 | [diff] [blame] | 12 | "label": _("Activity"), |
Rushabh Mehta | b63d550 | 2013-12-23 16:09:00 +0530 | [diff] [blame] | 13 | "link": "activity", |
| 14 | "type": "page" |
| 15 | }, |
| 16 | "Buying": { |
| 17 | "color": "#c0392b", |
| 18 | "icon": "icon-shopping-cart", |
Rushabh Mehta | b63d550 | 2013-12-23 16:09:00 +0530 | [diff] [blame] | 19 | "type": "module" |
| 20 | }, |
| 21 | "HR": { |
| 22 | "color": "#2ecc71", |
| 23 | "icon": "icon-group", |
Rushabh Mehta | 22ababb | 2014-02-07 18:12:43 +0530 | [diff] [blame] | 24 | "label": _("Human Resources"), |
Rushabh Mehta | b63d550 | 2013-12-23 16:09:00 +0530 | [diff] [blame] | 25 | "type": "module" |
| 26 | }, |
| 27 | "Manufacturing": { |
| 28 | "color": "#7f8c8d", |
| 29 | "icon": "icon-cogs", |
Rushabh Mehta | b63d550 | 2013-12-23 16:09:00 +0530 | [diff] [blame] | 30 | "type": "module" |
| 31 | }, |
| 32 | "Notes": { |
| 33 | "color": "#95a5a6", |
| 34 | "doctype": "Note", |
| 35 | "icon": "icon-file-alt", |
Rushabh Mehta | 22ababb | 2014-02-07 18:12:43 +0530 | [diff] [blame] | 36 | "label": _("Notes"), |
Rushabh Mehta | b63d550 | 2013-12-23 16:09:00 +0530 | [diff] [blame] | 37 | "link": "List/Note", |
| 38 | "type": "list" |
| 39 | }, |
| 40 | "Projects": { |
| 41 | "color": "#8e44ad", |
| 42 | "icon": "icon-puzzle-piece", |
Rushabh Mehta | b63d550 | 2013-12-23 16:09:00 +0530 | [diff] [blame] | 43 | "type": "module" |
| 44 | }, |
| 45 | "Selling": { |
| 46 | "color": "#1abc9c", |
| 47 | "icon": "icon-tag", |
Rushabh Mehta | b63d550 | 2013-12-23 16:09:00 +0530 | [diff] [blame] | 48 | "type": "module" |
| 49 | }, |
Rushabh Mehta | b63d550 | 2013-12-23 16:09:00 +0530 | [diff] [blame] | 50 | "Stock": { |
| 51 | "color": "#f39c12", |
| 52 | "icon": "icon-truck", |
Rushabh Mehta | b63d550 | 2013-12-23 16:09:00 +0530 | [diff] [blame] | 53 | "type": "module" |
| 54 | }, |
| 55 | "Support": { |
| 56 | "color": "#2c3e50", |
| 57 | "icon": "icon-phone", |
Rushabh Mehta | b63d550 | 2013-12-23 16:09:00 +0530 | [diff] [blame] | 58 | "type": "module" |
| 59 | } |
| 60 | } |