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.
		
		
		
		
		
			
		
			
				
					
					
						
							26 lines
						
					
					
						
							1.0 KiB
						
					
					
				
			
		
		
	
	
							26 lines
						
					
					
						
							1.0 KiB
						
					
					
				<ol class="app-task-list govuk-!-margin-top-8"> | 
						|
  <% @log.form.sections.each do |section| %> | 
						|
    <% next unless section.displayed_in_tasklist?(@log) %> | 
						|
    <li> | 
						|
      <h2 class="app-task-list__section-heading"> | 
						|
        <%= section.label %> | 
						|
      </h2> | 
						|
      <% if section.description %> | 
						|
        <p class="govuk-body"><%= section.description.html_safe %></p> | 
						|
      <% end %> | 
						|
      <ul class="app-task-list__items"> | 
						|
        <% section.subsections.each do |subsection| %> | 
						|
          <% if subsection.displayed_in_tasklist?(@log) && (subsection.applicable_questions(@log).count > 0 || !subsection.enabled?(@log)) %> | 
						|
            <% subsection_status = subsection.status(@log) %> | 
						|
            <li class="app-task-list__item"> | 
						|
              <span class="app-task-list__task-name" id="<%= subsection.id.dasherize %>"> | 
						|
                <%= subsection_link(subsection, @log, current_user) %> | 
						|
              </span> | 
						|
              <%= status_tag(subsection_status, "app-task-list__tag") %> | 
						|
            </li> | 
						|
          <% end %> | 
						|
        <% end %> | 
						|
      </ul> | 
						|
    </li> | 
						|
  <% end %> | 
						|
</ol>
 | 
						|
 |