mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 04:06:53 +08:00
18 lines
748 B
Text
18 lines
748 B
Text
<div id="table-form" class="well">
|
|
<%= bootstrap_form_for(@result, url: my_module_result_tables_path(format: :json), remote: true) do |f| %>
|
|
<%= f.text_field :name, style: "margin-top: 10px;" %><br />
|
|
<div class="editable-table" style="margin-bottom: 25px;">
|
|
<%= f.fields_for :table do |ff| %>
|
|
<%= ff.hidden_field(:contents, value: ff.object.contents, class: "hot-contents" ) %>
|
|
<div class="hot">
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<%= f.submit t("result_tables.new.create"),
|
|
class: 'btn btn-primary save-result',
|
|
onclick: "Results.processResult(event, Results.ResultTypeEnum.TABLE, false);" %>
|
|
<button type="button" class="btn btn-default cancel-new">
|
|
<%= t("general.cancel")%>
|
|
</button>
|
|
<% end %>
|
|
</div>
|