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

19 lines
802 B
Plaintext
Raw Normal View History

2016-02-12 23:52:43 +08:00
<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| %>
2016-07-21 19:11:15 +08:00
<span><strong><%=t "result_assets.edit.uploaded_asset" %></strong></span>
2016-10-04 18:34:43 +08:00
<p style="margin: 10px;">
<%= file_extension_icon(ff.object) %>
<%= ff.object.file_file_name %>
</p>
2016-02-12 23:52:43 +08:00
<%= ff.file_field :file %>
<% end %>
<hr>
2016-12-08 18:26:13 +08:00
<%= f.submit t("result_assets.edit.update"), class: 'btn btn-primary save-result', onclick: "processResult(event, ResultTypeEnum.FILE, true);" %>
2016-02-12 23:52:43 +08:00
<button type="button" class="btn btn-default cancel-edit">
<%= t("general.cancel")%>
</button>
<% end %>
</div>