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

Version Path
administrate-0.14.0 app/views/fields/has_one/_show.html.erb
viniBaxterDesk-22.0.0 app/views/fields/has_one/_show.html.erb
viniBaxterDesk-0.21.0 app/views/fields/has_one/_show.html.erb
viniBaxterDesk-0.20.0 app/views/fields/has_one/_show.html.erb
viniBaxterDesk-0.14.0 app/views/fields/has_one/_show.html.erb
viniBaxterDesk-0.13.2 app/views/fields/has_one/_show.html.erb
viniBaxterDesk-0.13.1 app/views/fields/has_one/_show.html.erb
administrate-0.13.0 app/views/fields/has_one/_show.html.erb
administrate-0.12.0 app/views/fields/has_one/_show.html.erb
administrate-0.11.0 app/views/fields/has_one/_show.html.erb
semantic-administrate-0.10.1 app/views/fields/has_one/_show.html.erb
semantic-administrate-0.10.0 app/views/fields/has_one/_show.html.erb
administrate-0.10.0 app/views/fields/has_one/_show.html.erb
semantic-administrate-0.1.1 app/views/fields/has_one/_show.html.erb
administrate-0.9.0 app/views/fields/has_one/_show.html.erb
semantic-administrate-0.1.0 app/views/fields/has_one/_show.html.erb
administrate-0.8.1 app/views/fields/has_one/_show.html.erb
administrate-0.8.0 app/views/fields/has_one/_show.html.erb