mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
12 lines
700 B
Text
12 lines
700 B
Text
<div class="well">
|
|
<%= bootstrap_form_for(@step, url: step_path(id: @step.id, format: :json), remote: true, authenticity_token: true, multipart: true, data: { role: "edit-step-form", type: :json }) do |f| %>
|
|
<h4><%= t("protocols.steps.edit.edit_step_title") %></h4>
|
|
<hr>
|
|
<%= render partial: "empty_step.html.erb", locals: {step: @step, f: f} %>
|
|
<hr>
|
|
<%= f.submit t("protocols.steps.edit.edit_step"), class: 'btn btn-primary step-save', onclick: "processStep(event, true);" %>
|
|
<a type="button" data-action="cancel-edit" class="btn btn-default" href="<%= step_path(id: @step, format: :json) %>" data-remote="true">
|
|
<%= t("general.cancel")%>
|
|
</a>
|
|
<% end %>
|
|
</div>
|