wedding-planner/app/views/guests/_guest.html.erb

23 lines
316 B
Plaintext
Raw Normal View History

2024-07-11 20:08:26 +02:00
<div id="<%= dom_id guest %>">
<p>
<strong>First name:</strong>
<%= guest.first_name %>
</p>
<p>
<strong>Last name:</strong>
<%= guest.last_name %>
</p>
<p>
<strong>Email:</strong>
<%= guest.email %>
</p>
<p>
<strong>Phone:</strong>
<%= guest.phone %>
</p>
</div>