% content_for :title, "Your organisation (Details)" %>
<% content_for :tab_title do %>
  <%= "Details" %>
<% end %>
  
    <%= govuk_summary_list do |summary_list| %>
      <% @organisation.display_attributes.each do |attr| %>
        <% if current_user.data_coordinator? && attr[:editable] %>
          <%= summary_list.row do |row| %>
            <% row.key { attr[:name].to_s.humanize } %>
            <% row.value { simple_format(attr[:value].to_s, {}, wrapper_tag: "div") } %>
            <% row.action(
              visually_hidden_text: "name",
              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 { simple_format(attr[:value].to_s, {}, wrapper_tag: "div") } %>
            <% row.action %>
          <% end %>
        <% end %>
      <% end %>
    <% end %>
  
  
    <%= render partial: "layouts/collection_resources" %>