Sha256: 5c4f390efcd138c42b61da80f97135ebcae767ef8498374fbfdbc0c75cc8becf

Contents?: true

Size: 598 Bytes

Versions: 13

Compression:

Stored size: 598 Bytes

Contents

<%#
# HasOne Index Partial

This partial renders a has_one relationship,
to be displayed on a resource's index page.

By default, the relationship is rendered as a link to the associated object.

## 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],
  ) %>
<% end %>

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
administrate-1.0.0.beta3 app/views/fields/has_one/_index.html.erb
administrate_tailwind_theme-0.0.6 app/views/fields/has_one/_index.html.erb
administrate-1.0.0.beta2 app/views/fields/has_one/_index.html.erb
administrate-1.0.0.beta1 app/views/fields/has_one/_index.html.erb
administrate_tailwind_theme-0.0.5 app/views/fields/has_one/_index.html.erb
administrate_tailwind_theme-0.0.4 app/views/fields/has_one/_index.html.erb
administrate_tailwind_theme-0.0.3 app/views/fields/has_one/_index.html.erb
administrate_tailwind_theme-0.0.2 app/views/fields/has_one/_index.html.erb
administrate_tailwind_theme-0.0.1 app/views/fields/has_one/_index.html.erb
administrate-0.20.1 app/views/fields/has_one/_index.html.erb
administrate-0.20.0 app/views/fields/has_one/_index.html.erb
administrate-0.19.0 app/views/fields/has_one/_index.html.erb
administrate-0.18.0 app/views/fields/has_one/_index.html.erb