While testing the Buzz Event doctype, the web link generated from the form leads to a 404 page on the website.
Current Implementation
File:
apps/buzz/buzz/events/doctype/buzz_event/buzz_event.js
if (frm.doc.route && frm.doc.is_published) {
frm.add_web_link(/events/${frm.doc.route});
}
Problem
The link is correctly added in the form.
However, when opening the generated URL (/events/), it returns a 404 error.

While testing the Buzz Event doctype, the web link generated from the form leads to a 404 page on the website.
Current Implementation
File:
apps/buzz/buzz/events/doctype/buzz_event/buzz_event.js
if (frm.doc.route && frm.doc.is_published) {
frm.add_web_link(
/events/${frm.doc.route});}
Problem
The link is correctly added in the form.
However, when opening the generated URL (/events/), it returns a 404 error.