feat: Add a "Go To Page" button in page form view

This commit is contained in:
Suraj Shetty 2019-05-03 11:57:50 +05:30
parent c5a11f9fd0
commit ebb26c771b

View file

@ -7,5 +7,10 @@ frappe.ui.form.on('Page', {
// make the document read-only
frm.set_read_only();
}
if (!frm.is_new() && !frm.doc.istable) {
frm.add_custom_button(__('Go to {0} Page', [frm.doc.title || frm.doc.name]), () => {
frappe.set_route(frm.doc.name);
});
}
}
});