<%= shortened_filename source_file %>

<%= source_file.covered_percent.round(2).to_s %> % covered, <%= result.runtime_relevant_coverage(source_file) %> % runtime covered <% if Coverband.configuration.web_enable_clear %> <%= button("#{base_path}clear_file?filename=#{source_file.relative_path}", 'clear file coverage') %>   <% end %> <% if source_file.never_loaded %>
This file was never loaded during app runtime or loading (or was loaded before Coverband loaded)! <% end %>

<%= source_file.lines_of_code %> relevant lines. <%= result.runtime_relavent_lines(source_file) %> runtime relevant lines. <%= source_file.covered_lines.count %> lines covered and <%= source_file.missed_lines.count %> lines missed.
Coverage first seen: <%= source_file.first_updated_at %>, last activity recorded: <%= source_file.last_updated_at %>
    
    <% source_file.lines.each_with_index do |line, index| %>
  1. <% if line.covered? %> load: <%= result.file_with_type(source_file, Coverband::EAGER_TYPE)&.line_coverage(index) || 0 %>, runtime: <%= result.file_with_type(source_file, Coverband::RUNTIME_TYPE)&.line_coverage(index) || 0 %> all: <%= line.coverage %> <% end %> <% if line.skipped? %>skipped<% end %> <%= CGI.escapeHTML(line.src.chomp) %>
  2. <% end %>