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.
46 lines
1.9 KiB
46 lines
1.9 KiB
<figure class="app-figure"> |
|
<figcaption id="<%= title.dasherize %>" class="app-figure__caption"> |
|
<strong><%= case_logs.size %></strong> <%= title.downcase %> |
|
</figcaption> |
|
<section class="app-table-group" tabindex="0" aria-labelledby="<%= title.dasherize %>"> |
|
<table class="govuk-table"> |
|
<thead class="govuk-table__head"> |
|
<tr class="govuk-table__row"> |
|
<th class="govuk-table__header" scope="col">Log</th> |
|
<th class="govuk-table__header" scope="col">Tenant</th> |
|
<th class="govuk-table__header" scope="col">Property</th> |
|
<th class="govuk-table__header" scope="col">Tenancy starts</th> |
|
<th class="govuk-table__header" scope="col">Log created</th> |
|
<th class="govuk-table__header" scope="col">Completed</th> |
|
</tr> |
|
</thead> |
|
<tbody class="govuk-table__body"> |
|
<% case_logs.map do |log| %> |
|
<tr class="govuk-table__row"> |
|
<th class="govuk-table__header" scope="row"> |
|
<%= govuk_link_to log.id, case_log_path(log) %> |
|
</th> |
|
<td class="govuk-table__cell app-!-font-tabular"> |
|
<%= log.tenant_code? ? log.tenant_code : '–' %> |
|
</td> |
|
<td class="govuk-table__cell app-!-font-tabular"> |
|
<%= log.propcode? ? log.propcode : '–' %> |
|
</td> |
|
<td class="govuk-table__cell"> |
|
<%= log.startdate.present? ? log.startdate.to_formatted_s(:govuk_date) : '–' %> |
|
</td> |
|
<td class="govuk-table__cell"> |
|
<%= log.created_at.to_formatted_s(:govuk_date) %> |
|
</td> |
|
<td class="govuk-table__cell"> |
|
<%= govuk_tag( |
|
colour: log.status == 'completed' ? 'blue' : 'grey', |
|
text: log.status.humanize |
|
) %> |
|
</td> |
|
</tr> |
|
<% end %> |
|
</tbody> |
|
</table> |
|
</section> |
|
</figure>
|
|
|