-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy path_show.html.erb
More file actions
47 lines (40 loc) · 1.41 KB
/
_show.html.erb
File metadata and controls
47 lines (40 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<%#
# 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 |title, attributes| -%>
<fieldset class="<%= "field-unit--nested" if title.present? %>">
<% if title.present? %>
<legend><%= t "helpers.label.#{namespace}.#{title}", default: title %></legend>
<% end %>
<% attributes.each do |attribute| %>
<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>
<% end %>
</fieldset>
<% end -%>
</fieldset>
<% end %>