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