scinote-web/app/views/result_tables/_edit.html.erb
2017-05-11 16:54:28 +02:00

20 lines
724 B
Plaintext

<div id="table-form" class="well">
<%= bootstrap_form_for(@result, url: result_table_path(format: :json), remote: true) do |f| %>
<%= f.text_field :name, style: "margin-top: 10px;" %><br />
<div class="editable-table">
<%= f.fields_for :table do |ff| %>
<%= ff.hidden_field(:contents, value: ff.object.contents_utf_8, class: "hot-contents" ) %>
<div class="hot">
</div>
<% end %>
</div>
<hr>
<%= f.submit t("result_tables.edit.update"),
class: 'btn btn-primary save-result',
onclick: "Results.processResult(event, Results.ResultTypeEnum.TABLE, true);" %>
<button type="button" class="btn btn-default cancel-edit">
<%= t("general.cancel")%>
</button>
<% end %>
</div>