<% content_for :title, "Check duplicate logs" %>
<%= govuk_panel( classes: "app-panel--interruption", ) do %>

These logs are duplicates

These logs have the same values for the following fields. Choose one to keep or correct the answers.

<% end %> <% @all_duplicates.each_with_index do |log, index| %> <%= render partial: "duplicate_log", locals: { log: log } %> <%= render partial: "duplicate_log_check_answers", locals: { log: log } %> <%= govuk_button_link_to "Keep this log and delete duplicates", "#" %> <% if index < @all_duplicates.count - 1 %>
<% end %> <% end %>