<% content_for :title, current_user.support? ? "Details" : "Your organisation" %> <% content_for :tab_title do %> <%= "Details" %> <% end %> <% if current_user.support? %> <%= render SubNavigationComponent.new( items: secondary_items(request.path, @organisation.id), ) %> <% end %>
<%= govuk_summary_list do |summary_list| %> <% @organisation.display_attributes.each do |attr| %> <% if can_edit_org?(current_user) && attr[:editable] %> <%= summary_list.row do |row| %> <% row.key { attr[:name].to_s.humanize } %> <% row.value { details_html(attr) } %> <% row.action( visually_hidden_text: attr[:name].to_s.humanize.downcase, href: edit_organisation_path, html_attributes: { "data-qa": "change-#{attr[:name]}" }, ) %> <% end %> <% else %> <%= summary_list.row do |row| %> <% row.key { attr[:name].to_s.humanize } %> <% row.value { details_html(attr) } %> <% row.action %> <% end %> <% end %> <% end %> <% end %>
<%= render partial: "layouts/collection_resources" %>