|
| 1 | +<h1>Bulk Edit Files</h1> |
| 2 | + |
| 3 | +<%= form_with url: library_model_model_files_path(@library, @model), method: :patch do |form| %> |
| 4 | + |
| 5 | + <h3>Select files to change:</h3> |
| 6 | + |
| 7 | + <table class="table table-striped" data-bulk-edit> |
| 8 | + <tr> |
| 9 | + <th><input type="checkbox" aria-label="Select All" value="0" name="bulk-select-all"></th> |
| 10 | + <th></th> |
| 11 | + <th>Name</th> |
| 12 | + <th>Filename</th> |
| 13 | + <th>Printed</th> |
| 14 | + <th>Presupported</th> |
| 15 | + <th>Y Up</th> |
| 16 | + </tr> |
| 17 | + <% @model.model_files.each do |file| %> |
| 18 | + <tr> |
| 19 | + <td><%= form.check_box "model_files[#{file.id}]", { data: { bulk_item: "#{file.id}"}}%></td> |
| 20 | + <td><i class="bi bi-<%= image?(file.file_format) ? 'image' : 'box' %>"></td> |
| 21 | + <td><%= link_to file.name, [@library, @model, file], title: file.filename %></td> |
| 22 | + <td><code><%= file.filename %></code></td> |
| 23 | + <td><i class="bi bi-<%= file.printed ? 'check-circle-fill' : 'circle' %>"></td> |
| 24 | + <td><i class="bi bi-<%= file.presupported ? 'check-circle-fill' : 'circle' %>"></td> |
| 25 | + <td><i class="bi bi-<%= file.y_up ? 'check-circle-fill' : 'circle' %>"></td> |
| 26 | + </tr> |
| 27 | + <% end %> |
| 28 | + </table> |
| 29 | + |
| 30 | + <h3>Select changes to make:</h3> |
| 31 | + |
| 32 | + <div class="row mb-3"> |
| 33 | + <%= form.label "Printed", class: "col-sm-2 col-form-label" %> |
| 34 | + <div class="col-sm-10"> |
| 35 | + <div class="form-switch"> |
| 36 | + <%= form.check_box :printed, class: "form-check-input form-check-inline" %> |
| 37 | + </div> |
| 38 | + </div> |
| 39 | + </div> |
| 40 | + <div class="row mb-3"> |
| 41 | + <%= form.label "Presupported", class: "col-sm-2 col-form-label" %> |
| 42 | + <div class="col-sm-10"> |
| 43 | + <div class="form-switch"> |
| 44 | + <%= form.check_box :presupported, class: "form-check-input form-check-inline" %> |
| 45 | + </div> |
| 46 | + </div> |
| 47 | + </div> |
| 48 | + <div class="row mb-3"> |
| 49 | + <%= form.label "Y Up", class: "col-sm-2 col-form-label" %> |
| 50 | + <div class="col-sm-10"> |
| 51 | + <div class="form-switch"> |
| 52 | + <%= form.check_box :y_up, class: "form-check-input form-check-inline" %> |
| 53 | + </div> |
| 54 | + </div> |
| 55 | + </div> |
| 56 | + <%= form.submit "Update Selected Files", class: "btn btn-primary" %> |
| 57 | + |
| 58 | +<% end %> |
0 commit comments