Files
wedding/app/views/plus_ones/index.html.erb
Rene 2de9c36040
Some checks failed
CI / build (push) Has been cancelled
translation 1
2025-09-16 19:25:44 +02:00

27 lines
870 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="container">
<div class="row">
<div class="offset-lg-2 col-lg-8">
<%= render partial: 'guests/leader' %>
<%= render partial: 'guests/rsvp_nav', locals: { active: 2 } %>
<h2>PlusOneGäste</h2>
<p>Bitte gib unten an, ob du jemanden zu deiner Begleitung mitbringst. Kinder sind ebenfalls herzlich willkommen.</p>
<p>&nbsp;</p>
<% if @plus_ones.any? %>
<%= render @plus_ones %>
<% else %>
<p>No plus ones added yet. Flying solo.</p>
<% end %>
<p>
<%= link_to 'PlusOne hinzufügen', new_guest_plus_one_path(@guest), class: 'btn btn-primary', data: { disable_with: 'Lädt...' } %>
</p>
<p>&nbsp;</p>
<p class="guests-buttons">
<%= link_to 'Weiter', confirm_guest_path(@guest), class: 'btn btn-primary' %>
</p>
</div>
</div>
</div>