brotherton-erpnext/erpnext/config/website.py

23 lines
463 B
Python
Raw Normal View History

2015-01-19 12:05:05 +00:00
from frappe import _
def get_data():
return [
{
"label": _("Portal"),
2015-01-19 12:05:05 +00:00
"items": [
2016-04-22 13:23:21 +00:00
{
"type": "doctype",
"name": "Homepage",
"description": _("Settings for website homepage"),
},
2015-01-19 12:05:05 +00:00
{
"type": "doctype",
"name": "Shopping Cart Settings",
"label": _("Shopping Cart Settings"),
"description": _("Settings for online shopping cart such as shipping rules, price list etc."),
"hide_count": True
}
]
}
]