mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
24 lines
1.1 KiB
Text
24 lines
1.1 KiB
Text
<!-- Edit experiment modal -->
|
|
<div class="modal"
|
|
id="edit-experiment-modal-<%= @experiment.id %>"
|
|
tabindex="-1"
|
|
role="dialog"
|
|
aria-labelledby="edit-experiment-modal-label">
|
|
<%= bootstrap_form_for [@project, @experiment], remote: true do |f| %>
|
|
<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" id="edit-eperiment-modal-label"><%= t("experiments.edit.modal_title", experiment: @experiment.name ) %></h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<%= render partial: "form.html.erb", locals: { form: f } %>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<%= f.submit t("experiments.edit.modal_create"), class: "btn btn-primary" %>
|
|
<button type="button" class="btn btn-default" data-dismiss="modal"><%=t "general.cancel" %></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|