Hello All,
I want to customize the popup display on the event registration form, is it possible to add many2one fields?
here's the controller I've added
@http.route(['''/event//registration/new'''], type='http', auth="public", website=True, sitemap=False)is there something missing with my code? because the value of the institution_rec still can't be displayed
def event_registration(self, **kw):
print("Execution Here 2.....................")
institusi_rec = http.request.env['res.partner.institusi'].sudo().search([])
values = {'institusi_rec': institusi_rec
}
return http.request.render("website_event_ylc.registration_attendee_details", values)