mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
14 lines
456 B
Plaintext
14 lines
456 B
Plaintext
<%= render 'notifications_mailer/shared/hello', recipient: @recipient %>
|
|
|
|
<p>
|
|
<%= t('.body.member_reserved_html',
|
|
NAME: @attached_object.user.profile.full_name,
|
|
RESERVABLE: @attached_object.reservable.name) %>
|
|
</p>
|
|
<p><%= t('.body.reserved_slots') %></p>
|
|
<ul>
|
|
<% @attached_object.slots.each do |slot| %>
|
|
<li><%= "#{I18n.l slot.start_at, format: :long} - #{I18n.l slot.end_at, format: :hour_minute}" %></li>
|
|
<% end %>
|
|
</ul>
|