Sha256: 247f3ed6fbc198cadb3836caf5c00598c066444249fb1f4b3ad660a9cf61e2aa

Contents?: true

Size: 562 Bytes

Versions: 9

Compression:

Stored size: 562 Bytes

Contents

<%#
# BelongsTo Index Partial

This partial renders a belongs_to 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::BelongsTo][1].
  A wrapper around the belongs_to relationship pulled from the database.

[1]: http://www.rubydoc.info/gems/administrate/Administrate/Field/BelongsTo
%>

<% if field.data %>
  <%= link_to(
    field.display_associated_resource,
    [namespace, field.data],
  ) %>
<% end %>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
administrate-0.4.0 app/views/fields/belongs_to/_index.html.erb
administrate-0.3.0 app/views/fields/belongs_to/_index.html.erb
administrate-0.2.2 app/views/fields/belongs_to/_index.html.erb
administrate-0.2.1 app/views/fields/belongs_to/_index.html.erb
administrate-0.2.0 app/views/fields/belongs_to/_index.html.erb
administrate-0.2.0.rc1 app/views/fields/belongs_to/_index.html.erb
administrate-0.1.5 app/views/fields/belongs_to/_index.html.erb
administrate-0.1.4 app/views/fields/belongs_to/_index.html.erb
administrate-0.1.3 app/views/fields/belongs_to/_index.html.erb