Browse Source

Make tasklist a partial

pull/21/head
baarkerlounger 3 years ago
parent
commit
c7d765c2e4
  1. 28
      app/views/case_logs/_tasklist.html.erb
  2. 29
      app/views/case_logs/show.html.erb

28
app/views/case_logs/_tasklist.html.erb

@ -0,0 +1,28 @@
<%# Placeholder until we have a real form schema %>
<%
sections = {
"About the household" => ["Household characteristics", "Household situation", "Household needs"],
"Tenancy and property information" => ["Tenancy information", "Property information"],
"Rent and charges" => ["Income & benefits", "Rent"],
"Local Authority" => ["Local authority"],
"Submission" => ["Declaration"]
}
%>
<ol class="app-task-list app-task-list--no-numbers">
<% sections.map do |section, subsections| %>
<li>
<h2 class="app-task-list__section">
<span class="app-task-list__section-number"><%= section %></span>
</h2>
<ul class="app-task-list__items">
<% subsections.map do |subsection| %>
<li class="app-task-list__item">
<a class="task-name" href=""><%= subsection %></a>
<strong class="govuk-tag govuk-tag--grey app-task-list__tag">Not started</strong>
</li>
<% end %>
</ul>
</li>
<% end %>
</ol>

29
app/views/case_logs/show.html.erb

@ -8,31 +8,4 @@
<a href="#">Skip to next incomplete section</a>
</p>
<%# Placeholder until we have a real form schema %>
<%
sections = {
"About the household" => ["Household characteristics", "Household situation", "Household needs"],
"Tenancy and property information" => ["Tenancy information", "Property information"],
"Rent and charges" => ["Income & benefits", "Rent"],
"Local Authority" => ["Local authority"],
"Submission" => ["Declaration"]
}
%>
<ol class="app-task-list app-task-list--no-numbers">
<% sections.map do |section, subsections| %>
<li>
<h2 class="app-task-list__section">
<span class="app-task-list__section-number"><%= section %></span>
</h2>
<ul class="app-task-list__items">
<% subsections.map do |subsection| %>
<li class="app-task-list__item">
<a class="task-name" href=""><%= subsection %></a>
<strong class="govuk-tag govuk-tag--grey app-task-list__tag">Not started</strong>
</li>
<% end %>
</ul>
</li>
<% end %>
</ol>
<%= render "tasklist" %>

Loading…
Cancel
Save