SpeciesFileGroup/taxonworks

View on GitHub
app/views/otus/batch_load/data_attributes/preview.html.erb

Summary

Maintainability
Test Coverage
<% content_for :warn_level do -%>
  <%= warn_level_input(@result) -%>
<% end %>

<%= content_for :batch_form do -%>
  <%= render partial: '/otus/batch_load/data_attributes/form', locals: {url: create_data_attributes_batch_load_otus_path, submit: :create} -%>
<% end %>

<%= content_for :line_breakdown do -%>
  <table class="top_align_text">
    <tr>
      <th class="four_character_width">line</th>
      <th class="four_character_width">data count</th>
      <th> name</th>
      <th class=""> data errors*</th>
      <th class=""> parse errors</th>
    </tr>

    <% @result.sorted_processed_rows.each do |i, rp| -%>
      <tr>
        <%= batch_line_link_td(i) -%>
        <%= batch_all_objects_count_td(rp) -%>
        <%= batch_otu_name_td(rp.objects[:otu].first) -%>
        <%= batch_data_errors_td(rp) -%>
        <%= batch_parse_errors_td(rp) -%>
      </tr>
    <% end -%>
  </table>
<% end %>

<%= render partial: '/shared/data/all/batch_load/preview' -%>