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

10 lines
258 B
Text
Raw Normal View History

2019-10-02 11:09:17 -04:00
<ul>
2019-10-21 09:08:12 -04:00
<% Relationship.where(person: person,
parent_rel: nil).each do |relationship| %>
2019-10-02 11:09:17 -04:00
<li>
2019-10-21 09:08:12 -04:00
<%= render partial: 'people/rel_hierarchy',
locals: { relationship: relationship } %>
2019-10-02 11:09:17 -04:00
</li>
<% end %>
</ul>