2016-02-12 23:52:43 +08:00
|
|
|
<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>
|
2017-05-11 22:54:28 +08:00
|
|
|
<%= f.submit t("result_tables.new.create"),
|
|
|
|
class: 'btn btn-primary save-result',
|
|
|
|
onclick: "Results.processResult(event, Results.ResultTypeEnum.TABLE, false);" %>
|
2016-02-12 23:52:43 +08:00
|
|
|
<button type="button" class="btn btn-default cancel-new">
|
|
|
|
<%= t("general.cancel")%>
|
|
|
|
</button>
|
|
|
|
<% end %>
|
|
|
|
</div>
|