blob: 237c49c9afbf64f3a6c6acc497701ff767330e5b [file] [log] [blame]
Rushabh Mehta71a6b932015-01-19 17:35:05 +05301from frappe import _
2
3def get_data():
4 return [
5 {
Rushabh Mehtac78b3112016-03-30 12:29:48 +05306 "label": _("Portal"),
Rushabh Mehta71a6b932015-01-19 17:35:05 +05307 "items": [
8 {
9 "type": "doctype",
Anand Doshie3bd78e2016-04-22 18:53:21 +053010 "name": "Homepage",
11 "description": _("Settings for website homepage"),
12 },
13 {
14 "type": "doctype",
Rushabh Mehta71a6b932015-01-19 17:35:05 +053015 "name": "Shopping Cart Settings",
16 "label": _("Shopping Cart Settings"),
17 "description": _("Settings for online shopping cart such as shipping rules, price list etc."),
18 "hide_count": True
19 }
20 ]
21 }
22 ]