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

25 lines
359 B
Plaintext
Raw Normal View History

2024-10-27 21:42:45 +00:00
<%# Copyright (C) 2024 Manuel Bustillo %>
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>