vinc/pi.ctu.re

View on GitHub
app/views/users/followees.html.erb

Summary

Maintainability
Test Coverage
<% title "#{@user.name} followees" %>

<%= render 'users/header' %>

<div class="row mt-4">
  <% @followees.each do |followee| %>
    <div class="col-md-6">
      <%= render 'user_card', user: followee %>
    </div>
  <% end %>
</div>