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.
		
		
		
		
		
			
		
			
				
					
					
						
							43 lines
						
					
					
						
							1.4 KiB
						
					
					
				
			
		
		
	
	
							43 lines
						
					
					
						
							1.4 KiB
						
					
					
				<% content_for :title, "Log #{@log.id}" %> | 
						|
<% content_for :breadcrumbs, govuk_breadcrumbs(breadcrumbs: { | 
						|
  "Home" => root_path, | 
						|
  breadcrumb_logs_title(@log, current_user) => breadcrumb_logs_link(@log, current_user), | 
						|
}) %> | 
						|
 | 
						|
<div class="govuk-grid-row"> | 
						|
  <div class="govuk-grid-column-two-thirds-from-desktop"> | 
						|
    <h1 class="govuk-heading-xl"> | 
						|
      <%= content_for(:title) %> | 
						|
    </h1> | 
						|
 | 
						|
    <% if @log.status == "in_progress" %> | 
						|
      <p class="govuk-body govuk-!-margin-bottom-7"><%= get_subsections_count(@log, :completed) %> of <%= get_subsections_count(@log) %> subsections completed.</p> | 
						|
 | 
						|
      <p class="govuk-body govuk-!-margin-bottom-2"> | 
						|
        <% next_incomplete_section = get_next_incomplete_section(@log) %> | 
						|
      </p> | 
						|
 | 
						|
      <p> | 
						|
        <% if next_incomplete_section.present? %> | 
						|
          <a class="app-section-skip-link" href="#<%= next_incomplete_section.id.dasherize %>"> | 
						|
            Skip to next incomplete section: <%= next_incomplete_section.label %> | 
						|
          </a> | 
						|
        <% end %> | 
						|
      </p> | 
						|
    <% elsif @log.status == "not_started" %> | 
						|
      <p class="govuk-body">This log has not been started.</p> | 
						|
    <% elsif @log.status == "completed" %> | 
						|
      <p class="govuk-body"> | 
						|
        <%= status_tag(@log.status) %> | 
						|
      </p> | 
						|
 | 
						|
      <p class="govuk-body"> | 
						|
        <%= review_log_text(@log) %> | 
						|
      </p> | 
						|
    <% end %> | 
						|
 | 
						|
    <%= render "tasklist" %> | 
						|
 | 
						|
    <%= edit_actions_for_log(@log, bulk_upload_filter_applied) %> | 
						|
  </div> | 
						|
</div>
 | 
						|
 |