<%= form_for following, url: federails.client_following_url do |f| %> <% if following.errors.any? %>

<%= pluralize(following.errors.count, 'error') %> prohibited this following from being saved:

<% end %>
<%= f.label :target_actor %> <%= f.collection_select :target_actor_id, Federails::Actor.all, :id, :name %>
<%= f.submit 'Save' %>
<% end %>