SpeciesFileGroup/taxonworks

View on GitHub
app/views/collecting_events/batch_load/castor/preview.html.erb

Summary

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

<%= content_for :batch_form do -%>
  <%= render partial: '/collecting_events/batch_load/castor/form', locals: {url: create_castor_batch_load_collecting_events_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(s) </th>
      <th class=""> data errors* </th>
      <th class=""> parse errrors </th>
    </tr>

    <% @result.sorted_processed_rows.each do |i, rp| -%>
      <tr>
        <%= batch_line_link_td(i) -%> 
        <%= batch_all_objects_count_td(rp) -%>
        <td>
          <%= rp.objects[:collecting_event].collect{ |ce| collecting_event_tag(ce) }.join('<br>').html_safe -%>
        </td> 
        <%= batch_data_errors_td(rp) -%>
        <%= batch_parse_errors_td(rp) -%>
      </tr>
    <% end -%> 
  </table>
<% end %>


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