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

20 lines
872 B
Plaintext

<div class="well">
<%= bootstrap_form_for(@result, url: result_asset_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| %>
<span><strong><%=t "result_assets.edit.uploaded_asset" %></strong></span>
<p style="margin: 10px;"><%= ff.object.file_file_name %></p>
<%= ff.file_field :file %>
<% end %>
<hr>
<% if direct_upload %>
<%= f.submit t("result_assets.edit.update"), class: 'btn btn-primary', onclick: 'startFileUpload(event, this);' %>
<% else %>
<%= f.submit t("result_assets.edit.update"), class: 'btn btn-primary', onclick: 'animateSpinner();' %>
<% end %>
<button type="button" class="btn btn-default cancel-edit">
<%= t("general.cancel")%>
</button>
<% end %>
</div>