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.
29 lines
1.1 KiB
29 lines
1.1 KiB
2 years ago
|
<% title = @location.name %>
|
||
|
<% content_for :title, title %>
|
||
|
|
||
|
<% content_for :before_content do %>
|
||
|
<%= govuk_back_link(
|
||
|
text: "Back",
|
||
|
href: scheme_locations_path(@scheme),
|
||
|
) %>
|
||
|
<% end %>
|
||
|
|
||
|
<%= render partial: "organisations/headings", locals: { main: @location.postcode, sub: @location.name } %>
|
||
|
|
||
|
<div class="govuk-grid-row">
|
||
|
<div class="govuk-grid-column-two-thirds-from-desktop">
|
||
|
<%= govuk_summary_list do |summary_list| %>
|
||
|
<% display_attributes(@location).each do |attr| %>
|
||
|
<%= summary_list.row do |row| %>
|
||
|
<% row.key { attr[:name] } %>
|
||
|
<% row.value { attr[:name].eql?("Status") ? status_tag(attr[:value]) : details_html(attr) } %>
|
||
|
<% row.action(text: "Change", href: scheme_location_edit_name_path(scheme_id: @scheme.id, location_id: @location.id)) if attr[:edit] %>
|
||
|
<% end %>
|
||
|
<% end %>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
</div>
|
||
|
<% if FeatureToggle.location_toggle_enabled? %>
|
||
|
<%= govuk_button_link_to "Deactivate this location", scheme_location_deactivate_path(scheme_id: @scheme.id, location_id: @location.id), warning: true %>
|
||
|
<% end %>
|