Hi everyone,
I'm using a form to store success messages that I display in HTML view. I'm calling the message with his ID from the HTML view like this :
In my HTML view, I have :
e = Entreprises [ID == input.entreprise.toLong()]; // Fetching the good enterprise
m = Messages [ID == input.MessageID.toLong()]; //Fetching the message to display
In the message table for the matching ID I have (multiline text field):
You have created <%=e.Entreprise%> with succes. Now you can...
In the HTML view, I'm calling the message like this:
<%=m.Message%>
My problem is... In the html view, I don't see the variable Entreprise, I see <%=e.Entreprise%>.
Any tips on how to write my message for the HTML view could read the variable ? I know we can use HTML tags in multiline... but can we use Deluge ?
Thanks
Pascal | nsisolution