libertarian-party/partynest

View on GitHub
app/views/people/_rel_root.html.erb

Summary

Maintainability
Test Coverage
<% if Relationship.where(person: person, parent_rel: nil).empty? %>
  <%= translate '.no_relations' %>
<% else %>
  <ul>
    <% Relationship.where(person: person,
                          parent_rel: nil).each do |relationship| %>
      <li>
        <%= render partial: 'people/rel_hierarchy',
                   locals: { relationship: relationship } %>
      </li>
    <% end %>
  </ul>
<% end %>