How to redirect dynamically to crm lead page

Anyone have idead how to redirecct i have crm task list


when i open any one record so thre is one option for open lead when i click on that the redirect to that link crm lead page here

Please help

Hi @Rahul7218,

Could you please elaborate on your issue in more detail? I’m having difficulty understanding your query clearly.

ok @VINOTH
i have create on quick list and in that add one filter ‘status’ = ‘To Do’


when i open it look this

when i click on any record then redirect to that task link lead page like this one

@Rahul7218, could you please clarify the expected output? What should happen when you click on your status? and what should it need to open?

@Rahul7218 Please Create Client Script

frappe.ui.form.on("CRM Task", {
	refresh(frm) {
		frm.add_web_link(`/crm/leads/${frm.doc.refrence_docname}`, __("Open in Portal"));
	},
});