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.
23 lines
754 B
23 lines
754 B
3 years ago
|
<% content_for :title, "Logs" %>
|
||
|
|
||
|
<h1 class="govuk-heading-l">
|
||
|
<span class="govuk-caption-l"><%= @organisation.name %></span>
|
||
|
<%= content_for(:title) %>
|
||
|
</h1>
|
||
|
<div class="govuk-!-margin-bottom-4">
|
||
|
<%= render NavigationComponent.new(
|
||
|
items: secondary_items(request.path, @organisation.id),
|
||
|
level: "sub"
|
||
|
) %>
|
||
|
</div>
|
||
|
<div class="app-filter-layout" data-controller="filter-layout">
|
||
|
|
||
|
<%= render partial: "case_logs/log_filters" %>
|
||
|
<% if @case_logs.present? %>
|
||
|
<div class="app-filter-layout__content">
|
||
|
<%= render partial: "case_logs/log_list", locals: { case_logs: @case_logs, title: "Logs", pagy: @pagy } %>
|
||
|
<%== render partial: "pagy/nav", locals: { pagy: @pagy, item_name: "logs" } %>
|
||
|
</div>
|
||
|
<% end %>
|
||
|
</div>
|