mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
13 lines
792 B
Text
13 lines
792 B
Text
<%= bootstrap_form_for @custom_field, url: organization_custom_field_path(@organization, @custom_field, format: :json), remote: :true, method: :delete, data: { role: "destroy-custom-field-form", id: @custom_field.id } do |f| %>
|
|
<%= f.hidden_field :column_index, value: column_index %>
|
|
<p><%= t("samples.modal_delete_custom_field.message", cf: @custom_field.name) %></p>
|
|
<div class="alert alert-danger" role="alert">
|
|
<span class="glyphicon glyphicon-exclamation-sign"></span>
|
|
|
|
<%= t("samples.modal_delete_custom_field.alert_heading") %>
|
|
<ul>
|
|
<li><%= t("samples.modal_delete_custom_field.alert_line_1", nr: @custom_field.sample_custom_fields.count) %></li>
|
|
<li><%= t("samples.modal_delete_custom_field.alert_line_2") %></li>
|
|
</ul>
|
|
</div>
|
|
<% end %>
|