19 lines
608 B
Text
19 lines
608 B
Text
<div class="modal-body">
|
|
|
|
Are you sure you want to delete "<%= @delete_shift_template.subject %>
|
|
(<%= format_shift_time(@delete_shift_template.time_start) %>
|
|
—
|
|
<%= 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>
|