My requirement is to get all the details of an entity on the second page when I click on the email button on first page. I have tried -
1. if else condition in liquid code but was not able to fetch user input in liquid
2. in the for loop I was getting all the email ids to compare with the user input email id.
I have used fetchxml to only get the data
{% fetchxml inprogress_query %}
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="cr2d2_edueventattendee">
<attribute name="cr2d2_edueventattendeeid" />
<attribute name="cr2d2_firstname" />
<attribute name="cr2d2_lastname" />
<order attribute="cr2d2_firstname" descending="false" />
<filter type="and">
<condition attribute="cr2d2_email" operator="eq" value="{{}}" />
</filter>
</entity>
</fetch>
What should i pass inside value to get the single email record that user has entered and match it with data verse to display details on second page?