Sha256: faa0c47ab24138e9bb54ce21762fc98d3ba808d9ee7cf15d248e29f5609076b8
Contents?: true
Size: 1.11 KB
Versions: 2
Compression:
Stored size: 1.11 KB
Contents
<%# # 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? %> <fieldset class="attribute--nested"> <legend> <%= link_to_if( accessible_action?(field.data, :show), field.display_associated_resource, [namespace, field.data], ) %> </legend> <% field.nested_show.attributes.each do |attribute| -%> <div> <dt class="attribute-label"> <%= t( "helpers.label.#{field.associated_class_name.underscore}.#{attribute.name}", default: attribute.name.titleize, ) %> </dt> <dd class="attribute-data attribute-data--<%= attribute.html_class %>"> <%= render_field attribute, { page: page } %> </dd> </div> <% end -%> </fieldset> <% end %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
administrate-0.19.0 | app/views/fields/has_one/_show.html.erb |
administrate-0.18.0 | app/views/fields/has_one/_show.html.erb |