blob: 59e7d404d44fa900f6c22eb185f2d64dc38bfe02 [file] [log] [blame]
Aditya Hasef3c22f32019-01-22 18:22:20 +05301from __future__ import unicode_literals
Rushabh Mehta71a6b932015-01-19 17:35:05 +05302from frappe import _
3
4def get_data():
5 return [
6 {
Rushabh Mehtac78b3112016-03-30 12:29:48 +05307 "label": _("Portal"),
Rushabh Mehta71a6b932015-01-19 17:35:05 +05308 "items": [
9 {
10 "type": "doctype",
Anand Doshie3bd78e2016-04-22 18:53:21 +053011 "name": "Homepage",
12 "description": _("Settings for website homepage"),
13 },
14 {
15 "type": "doctype",
Rushabh Mehta71a6b932015-01-19 17:35:05 +053016 "name": "Shopping Cart Settings",
17 "label": _("Shopping Cart Settings"),
18 "description": _("Settings for online shopping cart such as shipping rules, price list etc."),
19 "hide_count": True
20 }
21 ]
22 }
23 ]