<% content_for :title, "Your logs" %>

<%= content_for(:title) %>

<%= govuk_button_to "Create new log", case_logs_path %> <% if @in_progress_case_logs.present? %> <%= render partial: "log_list", locals: { case_logs: @in_progress_case_logs, title: "Logs you need to complete", date_title: "Last Changed" } %> <% end %> <% if @completed_case_logs.present? %> <%= render partial: "log_list", locals: { case_logs: @completed_case_logs, title: "Logs you’ve submitted", date_title: "Date Submitted" } %> <% end %>

See all completed logs (<%= @completed_case_logs.count %>)