Custom Form for each Collection Item

Hi there,

I have a use case I’m not quite sure how to solve.

I have a collection list called Programs.
Each collection item will have a separate landing page through the CMS Collection Pages
In the template, I’m adding a form where people can submit their email addresses

The problem is that I don’t know how to differentiate between the forms for each Program in the collection. Right now I’m seeing all the form entries in bulk, and I’d like to see them for each collection item instead.

Thanks!


Here is my public share link: LINK
(how to access public share link)

Are you using Webflow’s default form handler to send you the notifications?
If so, you can just use a custom code embed inside of your form like so;

<input name="Program" value="{{Program Name}}" type="hidden">

The {{Program Name}} bit is where you’d embed the CMS field you want to appear in your emails.

@memetican thank you! All good.