<%# # HasOne Show Partial This partial renders a has_one relationship, to be displayed on a resource's show page. All show page attributes of has_one relationship would be rendered ## Local variables: - `field`: An instance of [Administrate::Field::HasOne][1]. A wrapper around the has_one relationship pulled from the database. [1]: http://www.rubydoc.info/gems/administrate/Administrate/Field/HasOne %> <% if field.linkable? %>
<%= link_to_if( accessible_action?(field.data, :show), field.display_associated_resource, [namespace, field.data], ) %> <% field.nested_show.attributes.each do |title, attributes| -%>
"> <% if title.present? %> <%= t "helpers.label.#{namespace}.#{title}", default: title %> <% end %> <% attributes.each do |attribute| %>
<%= t( "helpers.label.#{field.associated_class_name.underscore}.#{attribute.name}", default: attribute.name.titleize, ) %>
<%= render_field attribute, { page: page } %>
<% end %>
<% end -%>
<% end %>