blob: d31b057881226ce52eee33ca0e6723b10626b96e [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",
Faris Ansari5f8b3582019-03-19 11:48:32 +053016 "name": "Homepage Section",
17 "description": _("Add cards or custom sections on homepage"),
18 },
19 {
20 "type": "doctype",
21 "name": "Products Settings",
22 "description": _("Settings for website product listing"),
23 },
24 {
25 "type": "doctype",
Rushabh Mehta71a6b932015-01-19 17:35:05 +053026 "name": "Shopping Cart Settings",
27 "label": _("Shopping Cart Settings"),
28 "description": _("Settings for online shopping cart such as shipping rules, price list etc."),
29 "hide_count": True
30 }
31 ]
32 }
33 ]