1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/views/people/_rel_root.html.erb
2019-10-21 18:08:12 +05:00

9 lines
258 B
Text

<ul>
<% Relationship.where(person: person,
parent_rel: nil).each do |relationship| %>
<li>
<%= render partial: 'people/rel_hierarchy',
locals: { relationship: relationship } %>
</li>
<% end %>
</ul>