scinote-web/app/views/result_texts/_edit.html.erb
2016-02-12 16:52:43 +01:00

14 lines
518 B
Plaintext

<div class="well">
<%= bootstrap_form_for(@result, url: result_text_path(format: :json), remote: :true) do |f| %>
<%= f.text_field :name, style: "margin-top: 10px;" %><br />
<%= f.fields_for :result_text do |ff| %>
<%= ff.text_area :text, style: "margin-top: 10px;" %><br />
<% end %>
<hr>
<%= f.submit t("result_texts.edit.update"), class: 'btn btn-primary' %>
<button type="button" class="btn btn-default cancel-edit">
<%= t("general.cancel")%>
</button>
<% end %>
</div>