forked from External/greenlight
26 lines
932 B
Plaintext
26 lines
932 B
Plaintext
<div class="modal fade" id="deleteRoomModal_<%= room.uid %>" tabindex="-1" role="dialog">
|
|
<div class="modal-dialog modal-dialog-centered" role="document">
|
|
<div class="modal-content text-center">
|
|
<div class="modal-body">
|
|
<div class="card-body p-6">
|
|
<div class="card-title">
|
|
<h3><%= t("modal.delete_room.confirm", room: room.name) %></h3>
|
|
</div>
|
|
|
|
<button type="button" class="btn btn-pill btn-info my-1 btn-del-room" data-dismiss="modal">
|
|
<%= t("modal.delete_room.keep") %>
|
|
</button>
|
|
|
|
<%= button_to room, method: :delete, id: "delete-confirm", class: "btn btn-pill btn-danger my-1 btn-del-room" do %>
|
|
<%= t("modal.delete_room.delete") %>
|
|
<% end %>
|
|
|
|
</div>
|
|
<div class="card-footer">
|
|
<p><%= t("modal.delete_room.warning").html_safe %></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|