blob: bdc874856f85529c18b7fc6dd50947f9f600990b [file] [log] [blame]
Rushabh Mehta27c40792013-04-03 15:21:44 +05301{
2 "modules": {
3 "Selling": {
4 "link": "selling-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +05305 "color": "#1abc9c",
Rushabh Mehta27c40792013-04-03 15:21:44 +05306 "icon": "icon-tag",
7 "type": "module"
8 },
9 "Accounts": {
10 "link": "accounts-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053011 "color": "#3498db",
Rushabh Mehta27c40792013-04-03 15:21:44 +053012 "icon": "icon-money",
13 "type": "module"
14 },
15 "Stock": {
16 "type": "module",
17 "link": "stock-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053018 "color": "#f39c12",
Rushabh Mehta27c40792013-04-03 15:21:44 +053019 "icon": "icon-truck"
20 },
21 "Buying": {
22 "type": "module",
23 "link": "buying-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053024 "color": "#c0392b",
Rushabh Mehta27c40792013-04-03 15:21:44 +053025 "icon": "icon-shopping-cart"
26 },
27 "Support": {
28 "type": "module",
29 "link": "support-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053030 "color": "#2c3e50",
Rushabh Mehta27c40792013-04-03 15:21:44 +053031 "icon": "icon-phone"
32 },
33 "Projects": {
34 "type": "module",
35 "link": "projects-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053036 "color": "#8e44ad",
Rushabh Mehtaf79e3452013-06-07 12:58:29 +053037 "icon": "icon-puzzle-piece"
Rushabh Mehta27c40792013-04-03 15:21:44 +053038 },
39 "Manufacturing": {
40 "type": "module",
41 "link": "manufacturing-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053042 "color": "#7f8c8d",
43 "icon": "icon-cogs"
Rushabh Mehta27c40792013-04-03 15:21:44 +053044 },
45 "Website": {
46 "type": "module",
47 "link": "website-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053048 "color": "#16a085",
Rushabh Mehta27c40792013-04-03 15:21:44 +053049 "icon": "icon-globe"
50 },
51 "HR": {
52 "type": "module",
53 "link": "hr-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053054 "color": "#2ecc71",
Rushabh Mehta27c40792013-04-03 15:21:44 +053055 "label": "Human Resources",
56 "icon": "icon-group"
57 },
58 "Setup": {
59 "type": "setup",
60 "link": "Setup",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053061 "color": "#bdc3c7",
Rushabh Mehta27c40792013-04-03 15:21:44 +053062 "icon": "icon-wrench"
63 },
64 "Activity": {
65 "type": "page",
66 "link": "activity",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053067 "color": "#e67e22",
Rushabh Mehta27c40792013-04-03 15:21:44 +053068 "icon": "icon-play",
69 "label": "Activity"
70 },
Rushabh Mehta9b10e362013-05-24 16:00:56 +053071 "Notes": {
72 "type": "list",
73 "doctype": "Note",
74 "link": "List/Note",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053075 "color": "#95a5a6",
Rushabh Mehta9b10e362013-05-24 16:00:56 +053076 "label": "Notes",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053077 "icon": "icon-file-alt"
Rushabh Mehta27c40792013-04-03 15:21:44 +053078 }
Rushabh Mehta3023a8f2013-04-03 16:34:23 +053079 },
80 "web": {
81 "pages": {
82 "about": {
83 "template": "app/website/templates/pages/about",
84 "args_method": "website.doctype.about_us_settings.about_us_settings.get_args"
85 },
86 "account": {
87 "template": "app/website/templates/pages/account"
88 },
89 "attributions": {
90 "template": "app/website/templates/pages/attributions"
91 },
92 "blog": {
93 "template": "app/website/templates/pages/blog",
94 "args_method": "website.helpers.blog.get_blog_template_args"
95 },
96 "contact": {
97 "template": "app/website/templates/pages/contact",
98 "args_doctype": "Contact Us Settings"
99 },
100 "index": {
101 "template": "app/website/templates/pages/index"
102 },
103 "order": {
104 "no_cache": true,
105 "template": "app/website/templates/pages/order",
106 "args_method": "selling.doctype.sales_order.sales_order.get_website_args"
107 },
108 "orders": {
109 "template": "app/website/templates/pages/orders",
110 "args_method": "selling.doctype.sales_order.sales_order.get_currency_and_number_format"
111 },
112 "product_search": {
113 "template": "app/website/templates/pages/product_search"
114 },
115 "ticket": {
116 "no_cache": true,
117 "template": "app/website/templates/pages/ticket",
Anand Doshi2e311ac2013-05-15 11:42:09 +0530118 "args_method": "support.doctype.support_ticket.support_ticket.get_website_args"
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530119 },
120 "tickets": {
121 "template": "app/website/templates/pages/tickets"
122 },
Anand Doshiedbf3e12013-07-02 11:40:16 +0530123 "address": {
124 "no_cache": true,
125 "template": "app/website/templates/pages/address",
126 "args_method": "utilities.doctype.address.address.get_website_args"
127 },
128 "addresses": {
129 "template": "app/website/templates/pages/addresses"
130 },
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530131 "writers": {
132 "template": "app/website/templates/pages/writers",
133 "args_method": "website.helpers.blog.get_writers_args"
Anand Doshi2e311ac2013-05-15 11:42:09 +0530134 },
135 "profile": {
136 "no_cache": true,
Anand Doshi2ac0a832013-07-10 20:49:44 +0530137 "template": "app/website/templates/pages/profile",
138 "args_method": "startup.webutils.get_profile_args"
Anand Doshi6f1f4402013-06-04 15:48:26 +0530139 },
140 "cart": {
141 "no_cache": true,
142 "template": "app/website/templates/pages/cart.html"
Anand Doshi8e2ea5f2013-06-13 14:40:57 +0530143 },
144 "partners": {
145 "template": "app/website/templates/pages/partners",
146 "args_method": "website.helpers.partner.get_partner_args"
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530147 }
148 },
149 "generators": {
150 "Web Page": {
151 "template": "app/website/templates/html/web_page.html",
152 "condition_field": "published"
153 },
154 "Blog Post": {
155 "template": "app/website/templates/html/blog_page.html",
156 "condition_field": "published"
157 },
158 "Item": {
159 "template": "app/website/templates/html/product_page.html",
160 "condition_field": "show_in_website"
161 },
162 "Item Group":{
163 "template": "app/website/templates/html/product_group.html",
164 "condition_field": "show_in_website"
Anand Doshi8e2ea5f2013-06-13 14:40:57 +0530165 },
166 "Sales Partner": {
167 "template": "app/website/templates/html/partner_page.html",
168 "condition_field": "show_in_website"
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530169 }
170 }
Rushabh Mehta27c40792013-04-03 15:21:44 +0530171 }
172}