mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-26 16:34:46 +00:00
[fix] default website fixes #3273
This commit is contained in:
@@ -42,17 +42,17 @@ class website_maker(object):
|
|||||||
website_settings.append("top_bar_items", {
|
website_settings.append("top_bar_items", {
|
||||||
"doctype": "Top Bar Item",
|
"doctype": "Top Bar Item",
|
||||||
"label":"Contact",
|
"label":"Contact",
|
||||||
"url": "contact"
|
"url": "/contact"
|
||||||
})
|
})
|
||||||
website_settings.append("top_bar_items", {
|
website_settings.append("top_bar_items", {
|
||||||
"doctype": "Top Bar Item",
|
"doctype": "Top Bar Item",
|
||||||
"label":"Blog",
|
"label":"Blog",
|
||||||
"url": "blog"
|
"url": "/blog"
|
||||||
})
|
})
|
||||||
website_settings.append("top_bar_items", {
|
website_settings.append("top_bar_items", {
|
||||||
"doctype": "Top Bar Item",
|
"doctype": "Top Bar Item",
|
||||||
"label": _("Products"),
|
"label": _("Products"),
|
||||||
"url": "products"
|
"url": "/products"
|
||||||
})
|
})
|
||||||
website_settings.save()
|
website_settings.save()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user