Sha256: c709d01c1fa17e360aad587c8b4bb6f73996c2f1d78b9acc8c7aff2b2875e338
Contents?: true
Size: 1018 Bytes
Versions: 18
Compression:
Stored size: 1018 Bytes
Contents
<%# # HasOne Show Partial This partial renders a has_one relationship, to be displayed on a resource's show page. All fields 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.data %> <fieldset class="attribute--nested"> <legend> <%= link_to( field.display_associated_resource, [namespace, field.data], ) %> </legend> <% field.nested_form.attributes.each do |attribute| -%> <div> <dt class="attribute-label"> <%= t( "helpers.label.#{resource_name}.#{attribute.name}", default: attribute.name.titleize, ) %> </dt> <dd class="attribute-data attribute-data--<%= attribute.html_class %>"> <%= attribute.data %> </dd> </div> <% end -%> </fieldset> <% end %>
Version data entries
18 entries across 18 versions & 3 rubygems