scinote-web/app/views/steps/_new.html.erb

13 lines
661 B
Plaintext
Raw Normal View History

2016-02-12 23:52:43 +08:00
<div class="well">
<%= bootstrap_form_for(@step, url: protocol_steps_path(@protocol, format: :json), authenticity_token: true, multipart: true, data: { role: "new-step-form", type: :json }) do |f| %>
2016-07-21 19:11:15 +08:00
<h4><%= t("protocols.steps.new.add_step_title") %></h4>
2016-02-12 23:52:43 +08:00
<%= render partial: "empty_step.html.erb", locals: {step: @step, f: f} %>
<div class="align-right">
2020-01-07 23:13:34 +08:00
<button type="button" data-action="cancel-new" class="btn btn-secondary">
<%= t("general.cancel")%>
</button>
2020-07-06 20:52:42 +08:00
<%= f.button t("protocols.steps.new.add_step"), class: 'btn btn-primary step-save', onclick: "processStep(event, false);" %>
</div>
2016-02-12 23:52:43 +08:00
<% end %>
</div>