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_summary_list do |summary_list| %>
<% check_your_answers_lettings_filters_list(session_filters).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: "#{filter[:path]}?search=#{search_term}&codes_only=#{codes_only}",
) %>
<% end %>
<% end %>
<% end %>
<% if count.positive? %>
<%= govuk_button_to "Send email", post_path, method: :post, params: { search: search_term, codes_only: } %>
<% end %>