<% content_for :title, "Assets" %>
<%= semantic_form_for @asset_source, remote: true, multipart: true do |f| %> <%= f.inputs do %> <%= icon('cloud-upload') %> Upload files <%= f.action :submit, label: 'Upload All', button_html: { style: 'display:none;' } %> <% end %> <% end %>
<%= semantic_form_for 'Asset', as: "assets", url: batch_destroy_assets_path, remote: true do |f| %> <%= f.action :submit, label: 'Delete Selected', button_html: { id: "delete_selected_assets", class: 'btn btn-danger', style: "display:none;" } %> <%= content_tag :table, id: "assets", class: "table table-striped responsive no-wrap display", data: { source: "#{ assets_url(format: "json") }" } do %> <%= content_tag :th, check_box_tag("assets_table_select_all"), class: 'column_delete', style: 'width:20px;', data: { orderable: false, searchable: false } %> <%= content_tag :th, "", style: 'width:30px;', data: { orderable: false, searchable: false, class_name: 'preview' } %> Name Size Type <%= content_tag :th, "Actions", data: { orderable: false, searchable: false } %> <% end %> <% end %>