I have a simple cms, and basically I have a detailed view of sauces which has an image. In the database table I have the pictures' URL stored. When I want to display the image, and put the variable where the image_tag url should go, the program throws an error. How do I do this?
<tr> <th>Picture</th> <td><%= image_tag("sauces/sauces_piri.png") %></td> </tr>
thats the URL put in manually which works. The EXACT same string is stored in the database in a field called pic_url. I already have a variable which stores the sauce object. How do I put the sauce field, instead of the direct URL.
I have tried
<tr> <th>Picture</th> <td><%= image_tag("#{sauce.pic_url}") %></td> </tr>
This does not work