scinote-web/app/views/result_assets/_edit.html.erb
Soufiane c28f86d46d
Refactor inline events [SCI-8434] (#5403)
Refactor inline events in task results [SCI-8434]
2023-05-16 09:34:36 +02:00

23 lines
875 B
Plaintext

<div class="well">
<%= bootstrap_form_for(@result, url: result_asset_path(format: :json), remote: true) 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;">
<%= file_extension_icon(ff.object) %>
<%= ff.object.file_name %>
</p>
<%= ff.file_field :file, direct_upload: true %>
<% end %>
<hr>
<div class="align-right edit-result-assets-buttons">
<button type="button" class="btn btn-secondary cancel-edit">
<%= t("general.cancel")%>
</button>
<%= f.button t("general.save"),
class: 'btn btn-primary save-result' %>
</div>
<% end %>
<%= javascript_include_tag 'results/result_assets/edit', nonce: true %>
</div>