mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
16 lines
742 B
Text
16 lines
742 B
Text
<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 %>
|
|
<% if direct_upload %>
|
|
<%= f.submit t("result_assets.new.create"), class: 'btn btn-primary', onclick: 'animateSpinner(); startFileUpload(event, this);' %>
|
|
<% else %>
|
|
<%= f.submit t("result_assets.new.create"), class: 'btn btn-primary', onclick: 'animateSpinner();' %>
|
|
<% end %>
|
|
<button type="button" class="btn btn-default cancel-new">
|
|
<%= t("general.cancel")%>
|
|
</button>
|
|
<% end %>
|
|
</div>
|