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

15 lines
644 B
Plaintext
Raw Normal View History

2016-02-12 23:52:43 +08:00
<div class="well">
<%= bootstrap_form_for(@result, url: my_module_result_assets_path(format: :json), remote: true, multipart: true, data: { type: :json }) do |f| %>
<%= f.text_field :name, style: "margin-top: 10px;" %><br />
<%= f.fields_for :asset do |ff| %>
<%= ff.file_field :file %>
<% end %>
2017-05-11 22:54:28 +08:00
<%= f.submit t("result_assets.new.create"),
class: 'btn btn-primary save-result',
onclick: "Results.processResult(event, Results.ResultTypeEnum.FILE, false);" %>
2016-02-12 23:52:43 +08:00
<button type="button" class="btn btn-default cancel-new">
<%= t("general.cancel")%>
</button>
<% end %>
</div>