You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
565 B
12 lines
565 B
<h2 class="govuk-body"> |
|
<%= render(SearchResultCaptionComponent.new(searched:, count: pagy.count, item_label:, total_count:, item: "logs", path: request.path)) %> |
|
<% if logs&.any? %> |
|
<%= govuk_link_to "Download (CSV)", csv_download_url, type: "text/csv", class: "govuk-!-margin-right-4" %> |
|
<% if @current_user.support? %> |
|
<%= govuk_link_to "Download (CSV, codes only)", csv_codes_only_download_url, type: "text/csv" %> |
|
<% end %> |
|
<% end %> |
|
</h2> |
|
<% logs.map do |log| %> |
|
<%= render(LogSummaryComponent.new(current_user:, log:)) %> |
|
<% end %>
|
|
|