mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-05 23:17:33 +08:00
18 lines
920 B
Text
18 lines
920 B
Text
|
<div class="modal fade" id="deleteSamples" tabindex="-1" role="dialog" aria-labelledby="deleteSamplesLabel">
|
||
|
<div class="modal-dialog" role="document">
|
||
|
<div class="modal-content">
|
||
|
<div class="modal-header">
|
||
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||
|
<h4 class="modal-title"><%= t("samples.modal_delete.title") %></h4>
|
||
|
<%= t("samples.modal_delete.notice") %>
|
||
|
</div>
|
||
|
<div class="modal-body">
|
||
|
<%= t("samples.modal_delete.other_samples") %>
|
||
|
</div>
|
||
|
<div class="modal-footer">
|
||
|
<button type="button" class="btn btn-primary" onclick="$('.delete_samples_submit').click();"><%= t("samples.modal_delete.delete") %></button>
|
||
|
<button type="button" class="btn btn-default" data-dismiss="modal"><%= t("general.cancel")%></button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|