shift73k/lib/shift73k_web/live/shift_template_live/delete_component.html.leex

20 lines
608 B
Plaintext
Raw Normal View History

<div class="modal-body">
Are you sure you want to delete "<%= @delete_shift_template.subject %>
2021-03-15 15:46:59 -04:00
(<%= format_shift_time(@delete_shift_template.time_start) %>
&mdash;
2021-03-15 15:46:59 -04:00
<%= format_shift_time(@delete_shift_template.time_end) %>)"?
</div>
<div class="modal-footer">
<%= link "Cancel", to: "#", class: "btn me-2", phx_click: "cancel", phx_target: @myself %>
<%= link "Confirm Delete", to: "#",
class: "btn btn-danger",
phx_click: "confirm",
phx_target: @myself,
phx_value_id: @delete_shift_template.id,
phx_value_subject: @delete_shift_template.subject %>
</div>