diff --git a/app/views/organisations/logs.html.erb b/app/views/organisations/logs.html.erb index bf4e76498..be6a3d5d3 100644 --- a/app/views/organisations/logs.html.erb +++ b/app/views/organisations/logs.html.erb @@ -1,9 +1,16 @@ -<% content_for :title, "Logs" %> +<% item_label = @pagy.count > 1 ? "logs" : "log" %> -

- <%= @organisation.name %> - <%= content_for(:title) %> -

+<% if @searched.present? %> + <% title = "Logs (search results for ‘#{@searched}’#{@pagy.last > 1 ? ", page #{@pagy.page} of #{@pagy.last}" : ''}) - Submit social housing and sales data (CORE) - GOV.UK" %> +<% else %> + <% title = "Logs #{@pagy.last > 1 ? "(page #{@pagy.page} of #{@pagy.last}) " : ''}- Submit social housing and sales data (CORE) - GOV.UK" %> +<% end %> + +<% content_for :title, title %> + +<% content_for :tab_title do %> + <%= "Logs" %> +<% end %> <%= render SubNavigationComponent.new( items: secondary_items(request.path, @organisation.id), @@ -14,7 +21,7 @@
<%= render SearchComponent.new(current_user:, search_label: "Search by log ID, tenant code, property reference or postcode", value: @searched) %>
- <%= render partial: "case_logs/log_list", locals: { case_logs: @case_logs, title: "Logs", pagy: @pagy } %> + <%= render partial: "case_logs/log_list", locals: { case_logs: @case_logs, title: "Logs", pagy: @pagy, searched: @searched, item_label:, total_count: @total_count } %> <%== render partial: "pagy/nav", locals: { pagy: @pagy, item_name: "logs" } %>