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.
69 lines
2.3 KiB
69 lines
2.3 KiB
<% title = @scheme.service_name %> |
|
<% content_for :title, title %> |
|
|
|
<%= govuk_back_link(href: "#{request.referrer}")%> |
|
|
|
<%= render partial: "organisations/headings", locals: { main: @scheme.service_name, sub: nil } %> |
|
|
|
|
|
<%= render SubNavigationComponent.new( |
|
items: scheme_items(request.path, @scheme.id, @scheme.locations.count), |
|
) %> |
|
|
|
<div class="govuk-grid-row"> |
|
<div class="govuk-grid-column-three-quarters"> |
|
<section class="x-govuk-summary-card govuk-!-margin-bottom-6"> |
|
<% @scheme.locations.each do |location| %> |
|
<header class="x-govuk-summary-card__header"> |
|
<h2 class="x-govuk-summary-card__title"> |
|
<%= "#{location.address_line1}, #{location.address_line2}" %> |
|
</h2> |
|
</header> |
|
<div class="x-govuk-summary-card__body"> |
|
<dl class="govuk-summary-list"> |
|
<div class="govuk-summary-list__row"> |
|
<dt class="govuk-summary-list__key"> |
|
Location code |
|
</dt> |
|
<dd class="govuk-summary-list__key"> |
|
<%= location.location_code %> |
|
</dd> |
|
</div> |
|
<div class="govuk-summary-list__row"> |
|
<dt class="govuk-summary-list__key"> |
|
Postcode |
|
</dt> |
|
<dd class="govuk-summary-list__key"> |
|
<%= location.postcode %> |
|
</dd> |
|
</div> |
|
<div class="govuk-summary-list__row"> |
|
<dt class="govuk-summary-list__key"> |
|
Type of unit |
|
</dt> |
|
<dd class="govuk-summary-list__key"> |
|
<%= location.type_of_unit %> |
|
</dd> |
|
</div> |
|
<div class="govuk-summary-list__row"> |
|
<dt class="govuk-summary-list__key"> |
|
Type of building |
|
</dt> |
|
<dd class="govuk-summary-list__key"> |
|
<%= location.type_of_building %> |
|
</dd> |
|
</div> |
|
<div class="govuk-summary-list__row"> |
|
<dt class="govuk-summary-list__key"> |
|
Wheelchair adaptation |
|
</dt> |
|
<dd class="govuk-summary-list__key"> |
|
<%= location.wheelchair_adaptation %> |
|
</dd> |
|
</div> |
|
</dl> |
|
</div> |
|
<% end %> |
|
</section> |
|
</div> |
|
</div>
|
|
|