<% content_for :title, "Download CSV" %> <% content_for :before_content do %> <%= govuk_back_link(href: download_csv_back_link) %> <% end %>
<% if @organisation.present? %> <%= @organisation.name %> <% end %>

Download CSV

We'll send a secure download link to your email address <%= @current_user.email %>.

<% if count.positive? %>

You've selected <%= count %> logs.

<% else %>

You haven't selected any logs. Please check your filters

<% end %>

Check your filters

<%= govuk_inset_text(text: "Amending these answers might change the amount of logs selected") %> <%= govuk_summary_list do |summary_list| %> <% check_your_answers_filters_list(session_filters, filter_type).each do |filter| %> <% summary_list.with_row do |row| %> <% row.with_key { filter[:label] } %> <% row.with_value do %> <%= simple_format( filter[:value], wrapper_tag: "span", class: "govuk-!-margin-right-4", ) %> <% end %> <% row.with_action( text: "Change", href: change_filter_for_csv_url(filter, filter_type, search_term, codes_only, params["id"]), ) %> <% end %> <% end %> <% end %>
<% if count.positive? %> <%= govuk_button_to "Send email", post_path, method: :post, params: { search: search_term, codes_only: } %> <% end %>