Sha256: 84415222ba661b9f11c586698e313fa0cb94afbf7c4ac8364874255617383b10

Contents?: true

Size: 560 Bytes

Versions: 9

Compression:

Stored size: 560 Bytes

Contents

<%#
# BelongsTo Show Partial

This partial renders a belongs_to relationship,
to be displayed on a resource's show 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/_show.html.erb
administrate-0.3.0 app/views/fields/belongs_to/_show.html.erb
administrate-0.2.2 app/views/fields/belongs_to/_show.html.erb
administrate-0.2.1 app/views/fields/belongs_to/_show.html.erb
administrate-0.2.0 app/views/fields/belongs_to/_show.html.erb
administrate-0.2.0.rc1 app/views/fields/belongs_to/_show.html.erb
administrate-0.1.5 app/views/fields/belongs_to/_show.html.erb
administrate-0.1.4 app/views/fields/belongs_to/_show.html.erb
administrate-0.1.3 app/views/fields/belongs_to/_show.html.erb