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

15 lines
260 B
Plaintext
Raw Normal View History

2024-07-11 20:08:26 +02:00
<p style="color: green"><%= notice %></p>
<h1>Guests</h1>
<div id="guests">
<% @guests.each do |guest| %>
<%= render guest %>
<p>
<%= link_to "Show this guest", guest %>
</p>
<% end %>
</div>
<%= link_to "New guest", new_guest_path %>